Pseudocode ExamplesPseudoCode to Print Numbers from 1 to 1005 years agoAdd Commentby MarcWrite an algorithm to print all the even numbers from 1 to 100. PseudoCode:C# BEGIN NUMBER counter FOR counter = 1 TO 100 STEP 1 DO OUTPUT counter ENDFOR END 12345678910 BEGIN NUMBER counter FOR counter = 1 TO 100 STEP 1 DO OUTPUT counterENDFOR END Flow Chart:Like this:Like Loading...