mirror of
https://github.com/renbaoshuo/202401-programming-assignments.git
synced 2024-11-23 15:48:42 +00:00
18 lines
277 B
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;
|
||
|
}
|