CODING:
class Even
{
public static void main(String[] args)
{
int a=0;
while(a<=10)
{
System.out.println(a);
a+=2;
}
}
}
{
public static void main(String[] args)
{
int a=0;
while(a<=10)
{
System.out.println(a);
a+=2;
}
}
}
FOR BEGINNER PROGRAMMER & COMPUTER SCIENCE STUDENTS
Comments
Post a Comment