大家好,我正在尝试获取它,以便我的程序能够获取多个用户的数据,然后在while循环结束后打印所有这些数据(我将计数器设置为1,因此可以获取一组新信息)。在最后一个之后输入,但如果达到两个人的限制,它将停止并打印信息。我已经能够使用用户输入的数据来获取正确打印的信息,但是我无法让多个人来输入数据,即使能够,也无法打印多于一组的数据。接收不止一个用户的数据。我将如何做这两件事?这是我到目前为止的代码:

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

    int newBalance = 0;
    int credCounter = 1;


    while(credCounter <= 2){
        System.out.print("Enter account number: ");
        int accNum = input.nextInt();
        System.out.print("Enter your beginning balance: ");
        int beginningBalance = input.nextInt();
        System.out.print("Enter your total charges this month: ");
        int charges = input.nextInt();
        System.out.print("Enter your total credit applied this month: ");
        int credit = input.nextInt();
        System.out.print("Enter your allowed credit limit: ");
        int maxcredLimit = input.nextInt();
        newBalance = beginningBalance + charges - credit;
        credCounter = credCounter + 1;

        System.out.printf("%nAccount number: %d%n", accNum);
        System.out.printf("Your new balance: %d%n", newBalance);
        if(newBalance <= maxcredLimit)
            System.out.printf("You have not exceeded your credit limit. %d%n");
        else if (newBalance > maxcredLimit)
            System.out.printf("Credit limit exceeded. %d%n");
    }
}


我以前可以获取多组信息,但是现在我只能获取要获取的用户数据之一,进行计算(以确定是否超过了他们的信用额度)并打印出来。由于某种原因,它一直停留在一个用户的信息上,而不是让两个用户的信息输入,这是为什么呢?

最佳答案

我猜您的代码崩溃了,因为您没有向最后两个print语句传递任何参数:

if(newBalance <= maxcredLimit)
    System.out.printf("You have not exceeded your credit limit. %d%n");
else if (newBalance > maxcredLimit)
    System.out.printf("Credit limit exceeded. %d%n");


你的意思是:

if(newBalance <= maxcredLimit)
    System.out.printf("You have not exceeded your credit limit. %d%n", newBalance);
else if (newBalance > maxcredLimit)
    System.out.printf("Credit limit exceeded. %d%n", newBalance);

10-06 16:12
查看更多