Write a program that prints all even numbers between 1 and 100, including them if it is the case.
Input
In this extremely simple problem there is no input.
Output
Print all even numbers between 1 and 100, including them, one by row.
Input Sample | Output Sample |
2
4 6 ... 100 |
Solution using C :
#include <stdio.h>
int main() {
int i;;
for(i=1; i<=100; i++)
{
if(i%2 ==0)
printf("%d\n",i);
}
return 0;
}
Comments
Post a Comment