1、一年365天,每天进步1%,累计进步多少呢? 1.01365 一年365天,每天退步1%,累计剩下多少呢? 0.99365 2、5%和1%的力量对比,数据写入文件中 3、工作日的力量 一年365天,一周5个工作日,每天进步1%一年365天,一周2个休息日,每天退步1%这种工作日的力量,如何呢? 4、工作日的努力 工作日模式要努力到什么水平,才能与每天努力1%一样 A君:一年365天,每天进步1%,不停歇 B君:一年365天,每周工作5日休息2日,休息日下降1%,工作日要多努力?才能和A 君一样? 5、A君和B君10年工作的数据对比都写入文件 格式:A君10年x B君10年y 注:x,y是数据,比如,A君10年持续工作的力量是123451(比较原来的力量值1)请输入完整代码
时间: 2024-03-25 21:36:15 浏览: 147
每天进步一点点
3星 · 编辑精心推荐
1. 每天进步1%,一年的累计进步率为1.01的365次方,即1.44。每天退步1%,一年的累计剩余率为0.99的365次方,即0.69。
```c
#include <stdio.h>
#include <math.h>
int main() {
double progress = pow(1.01, 365);
double remaining = pow(0.99, 365);
printf("每天进步1%%,一年的累计进步率为%.2f\n", progress);
printf("每天退步1%%,一年的累计剩余率为%.2f\n", remaining);
return 0;
}
```
2. 5%和1%的力量对比,写入文件中。
```c
#include <stdio.h>
int main() {
double power_5 = 1.05;
double power_1 = 1.01;
FILE *fp = fopen("power.txt", "w");
fprintf(fp, "5%%的力量和1%%的力量对比:\n");
for (int i = 1; i <= 365; i++) {
fprintf(fp, "第%d天,5%%的力量为%.2f,1%%的力量为%.2f\n", i, pow(power_5, i), pow(power_1, i));
}
fclose(fp);
return 0;
}
```
3. 工作日的力量,一年365天,一周5个工作日,每天进步1%;一年365天,一周2个休息日,每天退步1%。
```c
#include <stdio.h>
#include <math.h>
int main() {
double work_power = pow(1.01, 5);
double rest_power = pow(0.99, 2);
double power = pow(work_power * rest_power, 52);
printf("工作日的力量为%.2f\n", power);
return 0;
}
```
4. 工作日模式要努力到什么水平,才能与每天努力1%一样?假设一年365天,每天进步1%,不停歇;一年365天,每周工作5日休息2日,休息日下降1%。
```c
#include <stdio.h>
#include <math.h>
int main() {
double work_power = pow(1.01, 5);
double rest_power = pow(0.99, 2);
double power_a = pow(1.01, 365);
double power_b = pow(work_power * rest_power, 73) * pow(0.99, 104);
printf("A君一年内持续每天进步1%%,不停歇的力量为%.2f\n", power_a);
printf("B君一年内每周工作5日休息2日,休息日下降1%%,工作日的力量需要为%.2f才能与A君持平\n", power_a / pow(rest_power, 73) * pow(1.01, 104));
return 0;
}
```
5. A君和B君10年工作的数据对比。
```c
#include <stdio.h>
#include <math.h>
int main() {
double power_a = 1;
double power_b = 1;
for (int i = 1; i <= 3650; i++) {
power_a *= 1.01;
power_b *= i % 7 >= 6 ? 0.99 : 1.05;
if (i % 365 == 0) {
printf("A君%d年持续工作的力量是%.0f,B君%d年持续工作的力量是%.0f\n", i / 365, power_a, i / 365, power_b);
}
}
return 0;
}
```
阅读全文