Java Nested While Loop Example
Java Nested While Loop Example
Java Nested While Loop Example
While in Java Program
class kumar
{
public Static void main(String args[])
{
int a;
a=1;
while(a<=10)
{
System.out.println("The value of a is:"+a);
a++;
}
}
}
0 Comments