lundi 19 septembre 2022

How to convert python to Pseudocode?

I am learning how to use Pseudocode and have made a randomly generated 10 x 10 grid in python. I am trying to convert my python script into Pseudocode. Any suggestions?, Thanks

int main(void)
{
  int i = 0;
  while (i <= 99)
  {
    printf("%02d ", i);
    
    i++;

    if (i % 10 == 0) printf("\n");
  }

  return 0;
}

 



Aucun commentaire:

Enregistrer un commentaire