WAP to print All even numbers upto 100
Answers
Answered by
4
Answer:
class Num
{
public static void main (int i)
{
for( i=1; i<=100;i+=2)
System.out.println(i +" ");
}}
hope it helps pls mark it as brainliest and follow me.....
Similar questions