Hi guys, I am looking to write one of my for loops in pseudocode but I cannot find anything on the internet that I can understand so I am hoping someone can help.
I know for the cout << "\n\n\t" << x << " : "; I can do Print X and " : ", it is just the for loop.
Thanks.
1 2 3 4 5
for (x=1; x<=noofsp; x++)
{
cout << "\n\n\t" << x << " : ";
cin >> name;
}
Hi Albatross, I don't see how I can apply that example to mine, in this case I do need to apply to it so that it can be easily understood. Giglit I know what for loops look like, I am looking to convert my code into an algorithm e.g.
If studentgrade >= 60
Print "Passed"
else
Print "Failed"
endif