博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HW2.9
阅读量:5104 次
发布时间:2019-06-13

本文共 1241 字,大约阅读时间需要 4 分钟。

 

1 import java.util.Scanner; 2  3 public class Solution 4 { 5     public static void main(String[] args) 6     { 7         Scanner input = new Scanner(System.in); 8  9         System.out.print("Enter an amount in int, for example 1156: ");10         int amount = input.nextInt();11         int remainingAmount = amount;12         input.close();13 14         int numberOfOneDollars = remainingAmount / 100;15         remainingAmount = remainingAmount % 100;16 17         int numberOfQuarters = remainingAmount / 25;18         remainingAmount = remainingAmount % 25;19 20         int numberOfDimes = remainingAmount / 10;21         remainingAmount = remainingAmount % 10;22 23         int numberOfNickels = remainingAmount / 5;24         remainingAmount = remainingAmount % 5;25 26         int numberOfPennis = remainingAmount;27 28         System.out.println("Your amount " + amount + " consists of \n" + 29             "\t" + numberOfOneDollars + " dollars\n" + 30             "\t" + numberOfQuarters + " quarters\n" + 31             "\t" + numberOfDimes + " dimes\n" + 32             "\t" + numberOfNickels + " nickels\n" + 33             "\t" + numberOfPennis + " pennis");34     }35 }

 

转载于:https://www.cnblogs.com/wood-python/p/5745566.html

你可能感兴趣的文章
c++map的用法
查看>>
js交互
查看>>
vim工具
查看>>
Openssl genrsa命令
查看>>
Openssl crl2pkcs7命令
查看>>
php下载文件代码
查看>>
Google的“那些事”
查看>>
纪念愚人节微博禁止评论
查看>>
【SICP练习】115 练习3.41
查看>>
安家了
查看>>
Mr.Jin系统发布报告——WIN7 WIN8双系统下的学习模式系统
查看>>
MAVEN(一)中的Scope
查看>>
ABAP->内表数据下载到CSV格式(原创转载请注明)
查看>>
hdu1316 java解高精度斐波数
查看>>
jquery获取复选框checkbox的值
查看>>
SSM框架——详细整合教程(Spring+SpringMVC+MyBatis)
查看>>
[个人原创]关于java中对象排序的一些探讨(一)
查看>>
Unix/Linux笔记全集
查看>>
转: Oracle AWR 报告 每天自动生成并发送邮箱
查看>>
让div容器中的图片水平、垂直居中
查看>>