1
0
mirror of https://github.com/renbaoshuo/202401-programming-assignments.git synced 2024-11-23 15:48:42 +00:00
202401-programming-assignments/【额外练习】循环结构/7-5 循环-跳!.c

21 lines
249 B
C

#include <stdio.h>
int main() {
double a, x;
scanf("%lf %lf", &a, &x);
int count = 1;
double sum = a;
while (sum < x) {
a *= 0.98;
sum += a;
count++;
}
printf("%d\n", count);
return 0;
}