//所以我写了这个:(那里的输出)
import java.util.Scanner;
public class E7L6{
public static void main(String[]args){
int num1, num2;
Scanner keyboard= new Scanner(System.in);
System.out.print("Type two numbers:");
num1= keyboard.nextInt();
num2= keyboard.nextInt();
if(num1<num2){
while(num1<=num2){
int counter=num1;
System.out.print(counter+" "+num2);
counter=counter+1;
}}
else{
System.out.print("Error: the first number must be smaller than the second");
}
}}
Output:
----jGRASP exec: java E7L6
Type two numbers:4 124
4 4 4 4 4 4 4 4 4
----jGRASP: process ended by user.
//这么多数字 4 重复有人能告诉我我哪里错了吗?谢谢!!