Computer Science, asked by nandanirani04, 5 months ago

write a program to print even numbers 30 to 1​

Answers

Answered by rikuda936
0

Answer:

#include<iostream.h>

int main;

{

int i;

for(i=2; i<=28; i = i+2)

{

cout<<i<<endl;

}

}

Similar questions