1
0
mirror of https://github.com/renbaoshuo/202401-programming-assignments.git synced 2024-12-16 15:44:39 +00:00

21 lines
252 B
C
Raw Normal View History

2024-10-30 23:00:18 +08:00
#include <stdio.h>
int main() {
int t;
scanf("%d", &t);
double s1 = 25 + 0.1 * t;
double s2 = 20;
if (t >= 100) s2 = 0.3 * t;
if (s1 > s2) {
printf("2\n");
} else {
printf("1\n");
}
return 0;
}