1
0
mirror of https://github.com/renbaoshuo/202401-programming-assignments.git synced 2024-10-18 10:47:08 +00:00
202401-programming-assignments/【实践课内】2.选择结构1/7-3 成绩判定.c

18 lines
277 B
C

#include <stdio.h>
int main() {
int x;
scanf("%d", &x);
if (60 <= x && x <= 100) {
printf("Pass\n");
} else if (0 <= x && x < 60) {
printf("No Pass\n");
} else { // x < 0 || x > 100
printf("Data Error\n");
}
return 0;
}