1

尽管我对 C++ 有相当基本的了解,但我对 java 还是很陌生。对于我的任务,我计算零钱并将其分类为美国货币(即,如果你有 105 美分,它将分为一美元和一角钱)。
从逻辑上讲,我理解如何做到这一点,但我在理解 java 语法时遇到了一些严重的问题。我很难找到一种将用户输入的值分配给我创建的变量的方法。在 C++ 中,您只需使用 cin,但 Java 在这方面似乎要复杂得多。

到目前为止,这是我的代码:

package coinCounter;
import KeyboardPackage.Keyboard;
import java.util.Scanner;


public class  helloworld
{

    public static void main(String[] args) 
    {   
        Scanner input new Scanner(System.in);
        //entire value of money, to be split into dollars, quarters, etc.
        int money = input.nextInt();
        int dollars = 0, quarters = 0, dimes = 0, nickels = 0;

        //asks for the amount of money
        System.out.println("Enter the amount of money in cents.");


        //checking for dollars, and leaving the change
        if(money >= 100)
        {
            dollars = money / 100;
            money = money % 100;
        }

        //taking the remainder, and sorting it into dimes, nickels, and pennies
        else if(money > 0)
        {
            quarters = money / 25;
            money = money % 25;
            dimes = money / 10;
            money = money % 10;
            nickels = money / 5;
            money = money % 5;
        }

        //result
        System.out.println("Dollars: " + dollars + ", Quarters: " + quarters + ", Dimes: " + dimes + ", Nickels: " + nickels + ", Pennies: " + money);

    }

}

对于如何将用户输入分配给我的变量 Money,我真的很感激。但是,如果您在代码中看到另一个错误,请随时指出。

我知道这是非常基本的东西,所以我感谢你们的合作。

4

1 回答 1

2

更改此行:

Scanner input new Scanner(System.in);

至 :

Scanner input = new Scanner(System.in);

这应该在下面的行之后而不是之前:

System.out.println("Enter the amount of money in cents.");

正如您所做的那样,下面的行将从输入int值中读取并将其分配给您的变量 money:

int money = input.nextInt();
于 2013-09-03T02:19:40.503 回答