PDA

View Full Version : Writing pseudo-code


mdnazmulh
Mar30-08, 12:21 AM
I have just started computer programming in this running semester. So, I'm not experienced in writing pseudo-code. I have one thing to ask. Look at the following c++ statements:

if (x>10)
cout<<"x is greater than 10"<<endl;

Can I replace these c++ statements by the following pseudo-code?

If x>10 (Look, i used relational operator in pseudo-code. Is it valid?)
print "x is greater than 10"

CRGreathouse
Mar30-08, 12:34 AM
Sure, it's fine. Pseudocode doesn't have any hard-and-fast rules by its nature, but using < and > along with other basic operators like + is just fine.

kenewbie
Mar31-08, 03:28 AM
I imagine your example is very theoretical is is just used to illustrate the idea of pseudo code for a class or something?

Because nobody in their right mind would write pseudo code that detailed, it is 6 chars short of the real code! Imagine writing a code outline for a chess game with that much detail. You might as well just write the game itself.

k