你好,我被困在班级的编程任务上。赋值是创建一个可以计算不同循环的程序。我有提示用户输入代码正确我认为我只是无法弄清楚如何使我打印我的消息我输入的次数。
我希望第二个while循环打印类似
的内容第1行 - Hello
第2行 - Hello
第3行 - Hello
第4行 - Hello
我输入的数字。
提前感谢您的帮助。
import java.util.Scanner;
public class CountingLoops
{
public static void main(String[] args)
{
String message; // First message prompt
String inputString; // For reading input.
double numRows; // Number to be asked.
double rowNumber = 1;
Scanner keyboard = new Scanner(System.in);
System.out.print("Enter the message you want to print? ");
message = keyboard.nextLine();
System.out.print("Enter how many times you want your message to be printed. Enter the value from 1-20:" );
numRows = keyboard.nextDouble();
while (numRows > 20 || numRows < 1)
{
System.out.print("Number was not between 1-20. Try Again.");
System.out.print("Enter how many times you want your message to be printed. Enter the value from 1-20: ");
numRows = keyboard.nextDouble();
}
while (numRows <= 20)
{
System.out.println("Row " + rowNumber++ + " - " + message);
rowNumber = keyboard.nextDouble();
rowNumber++;
}
}
}
答案 0 :(得分:4)
“可以计算不同循环的程序”是什么意思?目前,底部while循环是一个无限循环,因为numRows没有被更新。以下是我认为可以解决您的问题:
while (numRows > 0)
{
System.out.println("Row " + rowNumber++ + " - " + message);
rowNumber++;
numRows--;
}
答案 1 :(得分:0)
由于这是一项任务,我不会提供代码。但是你的代码的所有问题都在最后一个while循环中。
首先,你甚至不更改变量numRows的值,当然,你不能退出while循环。
其次,在此while循环期间不需要读取另一个输入,因为所有输入都是在开头完成的。
第三,您在代码中添加了两次rowNumber,显然,它是不正确的,应该更改为其他内容。
答案 2 :(得分:0)
您的答案将涉及比较rowNumber和numRows以确定何时完成。