2 Star 0 Fork 0

BESTI.IS.JAVA2018/20165337

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Example8_23.java 726 Bytes
一键复制 编辑 原始数据 按行查看 历史
yueyuan 提交于 7年前 . week6
public class Example8_23 {
public static void main(String args[]) {
RedEnvelope redEnvelope = new RandomRedEnvelope(5.20,6);
System.out.printf("以下用循环输出%d个人抢%.2f圆的随机红包:\n",
redEnvelope.remainPeople,redEnvelope.remainMoney);
showProcess(redEnvelope);
}
public static void showProcess (RedEnvelope redEnvelope) {
double sum = 0;
while(redEnvelope.remainPeople>0){
double money = redEnvelope.giveMoney();
System.out.printf("%.2f\t",money);
sum = sum+money;
}
String s = String.format("%.2f",sum); //金额保留2位小数
sum = Double.parseDouble(s);
System.out.printf("\n%.2f圆的红包被抢完",sum);
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/BESTI-IS-JAVA-2018/20165337.git
git@gitee.com:BESTI-IS-JAVA-2018/20165337.git
BESTI-IS-JAVA-2018
20165337
20165337
master

搜索帮助