#include<stdio.h>
#define profit1 0.1
#define profit2 0.05
int main(void)
{
double a=100.0;
double b=100.0;
int i;
for(i=1;a>=b;i++)
{
a+=100*profit1;
b+=b*profit2;
printf("%d %lf %lf\n",i,a,b);
if(a<b)break;
}
printf("%d %lf %lf",i,a,b);
return 0;
}
break语句的应用例子
最新推荐文章于 2023-03-08 20:56:26 发布