我正在创建扫描仪测试。我设法打印偶数1-50。我想做一个扫描器代码,这样当用户输入即8时,它将打印8-50的所有偶数。
import java.util.Scanner;
公共类ModulusCalculation {
public static void main(String[] args)
{
int endLimit = 50;
System.out.println("WE ARE GOING TO PRINT EVEN NUMBER FROM 1 AND " + endLimit);
Scanner input = new Scanner(System.in);
for (int startingPoint = 1; startingPoint <= endLimit; startingPoint++)
{
if (startingPoint % 2 == 0)
{
input.nextLine();
System.out.println(+startingPoint);
}
}
}
}
答案 0 :(得分:0)
不需要在for循环中阅读 input.nextLine(); 。
第1步:读取起始整数值
第2步: for(int startingPoint = startinteger; startingPoint&lt; = endLimit; startingPoint ++)
第3步:根据for循环中的条件打印所有偶数