Java - Assigning User Input to Variable / Change Counter

核能气质少年 提交于 2019-12-02 04:57:35
Charaf JRA

Change this line :

Scanner input new Scanner(System.in);

To :

Scanner input = new Scanner(System.in);

And this should be after line below not before:

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

And as you did , the line below will read from input int value and assign it to your variable money :

int money = input.nextInt();
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!