//だから私はこれを書いた:(出力はそこにある)
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 の繰り返しがあり、どこが間違っているのか教えてもらえますか? ありがとう!!