以下代码是我能够创建的,但现在我对下一步该做什么感到困惑。
编写一个读取整数输入序列并打印的程序
程序应首先设置输入(扫描仪)和变量,然后使用while循环,询问用户输入并跟踪所需的数据。必须为用户指定一种方法来停止输入,可能是输入Q或q。循环结束时,程序应打印问题的结果。到目前为止,累计的总数应该在用户输入的每个数字后打印。只有在用户输入数字后才能打印最小,最大,均匀数量的赔率和平均数。您需要if语句和模数来完成此任务。所有数字都应该是此程序的整数。完成后,请在Blackboard上输入您的评论代码。请确保您的姓名在评论中注明 你的代码顶部。
//Asks user of a number
System.out.print("Enter an integer: ");
int num = 0;
int num1;
int num2;
int num3;
int num4;
int num5;
while (in.hasNextInt())
{
num = in.nextInt();
System.out.print("Enter next integer or Q to quit ");
}
//Gets total of numbers
//Gets smallest number
//Gets largest number
//Number of even inputs
//Number of odd inputs
//Gets average of numbers