1.

Write a pseudocode and flowchrt to print even no till 100​

Answer»

ANSWER:

psuedocode  : -

For 1 to 100

Print i*2

End

Explanation:-

#include

using namespace std;

int main(){

for(int i = 1 ; i <= 100 ; ++i){

if (i%2==0){

COUT << i << " ";

}}

return 0;

}



Discussion

No Comment Found