public class DoWhile {
public static void main(String[] args) {
do{
System.out.println("*");
}while(true);
}
}
OUTPUT:
*
*
*
*
*
and so on.....
public static void main(String[] args) {
do{
System.out.println("*");
}while(true);
}
}
OUTPUT:
*
*
*
*
*
and so on.....
No comments:
Post a Comment