以下是使用 C 语言解决此问题的代码: ```c #include <stdio.h> int main() { int score; scanf("%d", &score); if (score >= 90) { printf("a\n"); } else if (score >= 80) { printf("b\n"); } else if (score >= 70) { printf("c\n"); } else if (score >= 60) { printf("d\n"); } else { printf("e\n"); } return 0; } ``` [2024-10-30 16:12:35 | AI写代码神器 | 143点数解答]