This site requires JavaScript, please enable it in your browser!
Greenfoot back
20NoratJ
20NoratJ wrote ...

2019/4/12

If Statements - Equal on Different Platforms of Code

20NoratJ 20NoratJ

2019/4/12

#
Are the conditions for an "If" Statement equal for all the major forms of code (Python, Java, & C++). Or meaning that do if statements in each language of code have the same parameters and function? Here's an Example from java if (foundLeaf()) { eatLeaf(); } else if (canMove()) { move(); } else { turnLeft(); } How are the other main programs similar or different to this?
danpost danpost

2019/4/12

#
20NoratJ wrote...
Are the conditions for an "If" Statement equal for all the major forms of code (Python, Java, & C++). Or meaning that do if statements in each language of code have the same parameters and function? Here's an Example from java << Code Omitted >> How are the other main programs similar or different to this?
Other than possibly syntax, they are all pretty much the same.
You need to login to post a reply.