package com.itheima;
import com.sun.xml.internal.ws.api.model.wsdl.WSDLOutput;
/*
小芳存钱
需求:小芳的妈妈每天给他2.5元钱,她都会存起来,
但是,每当这一天是存钱的第5天或者5的倍数的话,她都会
花去6元钱,请问,经过多少天,小芳才可以存到100元钱。
*/
public class whileDemo07 {
public static void main(String[] args) {
//每天妈妈给她的2.5元钱
double sunmoney = 2.5;
//定义小芳存到的钱
double summoney = 0;
//定义小芳存钱需要的天数
int count = 1;
//因为不确定需要存多少天,所以这里用while循环
while (true){
summoney+=sunmoney;
if(summoney>=100){
break;
}
if(count%5==0) {
summoney -= 6;
}
count++;
}
System.out.println("小芳存够100元,一共花了"+count+"天");
}
}
原创文章,作者:Carrie001128,如若转载,请注明出处:https://blog.ytso.com/277603.html