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-23 选择-电话费.c

21 lines
252 B
C

#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;
}