public class DoWhile {
public static void main(String[] args) {
int coun=0;
do{
coun++;
System.out.println(coun);
}while(coun<=10);
}
}
public class DoWhile {
public static void main(String[] args) {
int coun=0;
do{
coun++;
System.out.println(coun);
}while(coun<=10);
}
}
<?php // Start the session session_start(); ?> <!DOCTYPE html> <html> <head> <link rel=&q...
No comments:
Post a Comment