基本Java问题

时间:2015-01-09 13:41:33

标签: java loops while-loop java.util.scanner public

我编译没有错误,但是我可以完成第一个循环没有问题。然而,第二次绕过它将提示分区名称但是员工数量的提示确实如此。所以我最终看到输入部门名称:输入员工人数:

不确定为什么会这样,但在看的时候我看不到任何不合适的地方。

如果您看到我出错的地方,您可以指向行号或代码串。

感谢。

import java.util.Scanner;

public class PayRoll {

    public static void main(String[] args) {
        Scanner input = new Scanner(System.in);

        String name;
        int employees;
        double salary;        

        while(true) {
            System.out.print("Enter Division Name: ");
            name = input.nextLine();

            if(name.equalsIgnoreCase("stop")) {
                break;
            }else {
                System.out.print("Enter Number of Employees: ");
                employees = input.nextInt();

                while(employees <= 0) {
                    System.out.print("Number of Employees Must be Greater than 0, Please Re-enter: ");
                    employees = input.nextInt();                
                }

                System.out.print("Enter Average Salary: ");
                salary = input.nextDouble();

                 while(salary <= 0) {
                    System.out.print("Average Salary Must be Greater than 0, Please Re-enter: ");
                    salary = input.nextDouble();
                }

                Division d = new Division(name,employees,salary);
                System.out.println();
                System.out.println("Division " + d.getName());
                System.out.println("Has " + d.getEmployees() + " Employees.");
                System.out.printf("Averaging $%.2f\n",d.getSalary(),"per Employee");
                System.out.printf("Making the Division total: $%.2f\n", d.getTotal());
                System.out.println();
            }                    
        }
    }
}

class Division {
    private String name;  
    private int employees;
    private double salary;              

    public Division(String name, int employees, double salary) {
        this.name = name;
        this.employees = employees;
        this.salary = salary;
    }

    public double getTotal() {
       return employees*salary;
   }

   public String getName() {
       return name;
   }

   public void setName(String name) {
       this.name = name;
   }

   public int getEmployees() {
      return employees;
   }

   public void setEmployees(int employees) {
       this.employees = employees;
   }

   public double getSalary() {
       return salary;
   }

   public void setSalary(double salary) {
       this.salary = salary;
   }
}

3 个答案:

答案 0 :(得分:5)

while(true) {
    input = new Scanner(System.in);
 }

在while循环中实例化您的Scanner实例input

答案 1 :(得分:1)

只需在每次 input.nextInt(); 输入后添加 input.nextLine(); 。 nextDouble(); AS:

while(true) {
    System.out.print("Enter Division Name: ");
    name = input.nextLine();
    if(name.equalsIgnoreCase("stop")) {
         break;
    }else {
         System.out.print("Enter Number of Employees: ");
         employees = input.nextInt();
         input.nextLine();  // Add it Here

        while(employees <= 0) {
             System.out.print("Number of Employees Must be Greater than 0, Please Re-enter: ");
             employees = input.nextInt();    
             input.nextLine();            
        }

         System.out.print("Enter Average Salary: ");
         salary = input.nextDouble();
         input.nextLine();

         while(salary <= 0) {
              System.out.print("Average Salary Must be Greater than 0, Please Re-enter: ");
              salary = input.nextDouble();
              input.nextLine();
         }
         // Rest of the Code
 }

要了解您需要执行此操作的原因,请阅读Java文档

答案 2 :(得分:0)

从while循环中创建一个计数器变量。让我们说counter == 0,在循环结束时递增它,这样你就不会在初始循环中使用我的解决方案产生问题。

 int counter = 0;
 While(){   
   System.out.print("Enter Division Name: ");
   if(counter != 0){
    input.nextLine();
   } 
   name = input.nextLine();
   counter++;
 }