Can You Write A Pseudocode To Find The Total Of Odd Numbers Between 1 And 100?

1

1 Answers

Oddman Profile
Oddman answered
Sum=0;For(I=1,100,2){Sum+=I}

The "beauty" of pseudocode is that it doesn't need to conform to the requirements and restrictions of any known language. Here, I've defined my psedudocode For() statement to have an initial value, final value, and increment.

Answer Question

Anonymous