01-03-2013, 02:21 AM
This is more of an explanatory program than a practical. It will count to 100 and show you when it it finished.
[code2=java]import java.util.Scanner;
public class New {
static Scanner input = new Scanner(System.in);
public static void main(String[]args){
countNumber();}
public static void countNumber(){
int i = 0;
while (i <= 100){//The while statement says that this will repeat 100 times
System.out.println(i);
i++;
if(i == 101){
System.out.println("I now equals 100");
}
}
}
}[/code2]
p.s. Sorry that it does not tell you exactly what is doing
[code2=java]import java.util.Scanner;
public class New {
static Scanner input = new Scanner(System.in);
public static void main(String[]args){
countNumber();}
public static void countNumber(){
int i = 0;
while (i <= 100){//The while statement says that this will repeat 100 times
System.out.println(i);
i++;
if(i == 101){
System.out.println("I now equals 100");
}
}
}
}[/code2]
p.s. Sorry that it does not tell you exactly what is doing