gpt4 book ai didi

java - 当最后一个问题回答错误时,我如何重复?

转载 作者:行者123 更新时间:2023-12-04 10:42:24 25 4
gpt4 key购买 nike

我知道这听起来有点奇怪,但我不知道如何表达。例如,当用户输入大于 2000000 的数字时,我会显示一条错误消息。但是,之后它应该重复“输入薪水”问题。如果他们输入正确答案,程序会询问我是否愿意输入另一名员工。 (基本上循环再次重新启动)。如果他们再次输入错误答案,程序会重复相同的错误消息,并假设让用户再次输入,直到他们给出有效答案。


import java.util.Scanner;
import java.text.*;
import java.io.*;

public class Project1 {

public static void main(String[] args) throws FileNotFoundException

{

Scanner keyboard = new Scanner(System.in);
Scanner user_input = new Scanner(System.in);
Scanner scan = new Scanner(System.in);

PrintWriter outFile = new PrintWriter("Project1.out");

String employee_Fname;
String employee_Lname;
String employee_city;
String employee_state;
double empzip;
String employee_job;
double empsal;
char again;
int count = 1;
String answer;

do {

System.out.print("Enter Employees First Name: ");
employee_Fname = user_input.next();
System.out.println();

System.out.print("Enter the employee's last name: ");
employee_Lname = user_input.next();
System.out.println();

System.out.print("Enter employee's city: ");
employee_city = user_input.next();
System.out.println();

System.out.print("Enter employee's state: ");
employee_state = user_input.next();
employee_state.toUpperCase();
System.out.println();

System.out.print("Enter employee's zipcode: ");
empzip = keyboard.nextDouble();
System.out.println();

System.out.print("Enter employee's job title: ");
employee_job = user_input.next();
System.out.println();

System.out.print("Enter employee's salary: ");
empsal = keyboard.nextDouble();
System.out.println();

if (empsal > 2000000) {
System.out.println();
System.out.println("Invalid salary entered! Please try again.");
empsal = keyboard.nextDouble();
System.out.println();

} else

System.out.print("Do you want to enter another employee? Y/N?");
answer = keyboard.next();
} while (answer.equals("Y"));

outFile.printf("Employee first name is: " + employee_Fname);
outFile.printf("Employee last name is: " + employee_Lname);
outFile.printf("Employee city is: " + employee_city);
outFile.printf("Employee state is: " + employee_state);
outFile.printf("Employee zipcode is: " + empzip);
outFile.printf("Employee job is: " + employee_job);
outFile.printf("Employee salary is: " + empsal);

outFile.close();

}
}

我的问题有意义吗?

最佳答案

我已经在代码中进行了更改。修改在评论之间// Changes start here// Changes end here .
我添加了一个 while 循环来继续检查工资,如果超过 2000000,请用户再次输入。


import java.util.Scanner;
import java.text.*;
import java.io.*;

public class Project1{

public static void main(String[] args) throws FileNotFoundException

{

Scanner keyboard = new Scanner(System.in);
Scanner user_input = new Scanner(System.in);
Scanner scan = new Scanner(System.in);

PrintWriter outFile = new PrintWriter("Project1.out");

String employee_Fname;
String employee_Lname;
String employee_city;
String employee_state;
double empzip;
String employee_job;
double empsal;
char again;
int count = 1;
String answer;

do {

System.out.print("Enter Employees First Name: ");
employee_Fname = user_input.next();
System.out.println();

System.out.print("Enter the employee's last name: ");
employee_Lname = user_input.next();
System.out.println();

System.out.print("Enter employee's city: ");
employee_city = user_input.next();
System.out.println();

System.out.print("Enter employee's state: ");
employee_state = user_input.next();
employee_state.toUpperCase();
System.out.println();

System.out.print("Enter employee's zipcode: ");
empzip = keyboard.nextDouble();
System.out.println();

System.out.print("Enter employee's job title: ");
employee_job = user_input.next();
System.out.println();

System.out.print("Enter employee's salary: ");
empsal = keyboard.nextDouble();
System.out.println();

// Changes start here
while (empsal > 2000000) {
System.out.println();
System.out.println("Invalid salary entered! Please try again.");
empsal = keyboard.nextDouble();
System.out.println();
}
// Changes end here

System.out.print("Do you want to enter another employee? Y/N?");
answer = keyboard.next();

} while (answer.equals("Y"));

outFile.printf("Employee first name is: " + employee_Fname);
outFile.printf("Employee last name is: " + employee_Lname);
outFile.printf("Employee city is: " + employee_city);
outFile.printf("Employee state is: " + employee_state);
outFile.printf("Employee zipcode is: " + empzip);
outFile.printf("Employee job is: " + employee_job);
outFile.printf("Employee salary is: " + empsal);

outFile.close();

}
}

关于java - 当最后一个问题回答错误时,我如何重复?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59872950/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com