摘要: #include <stdio.h> char score_to_grade(int score); int main() { int score; char grade; while(scanf("%d", &score) != EOF) { grade = score_to_grade(scor 阅读全文
posted @ 2025-11-03 13:38 www116 阅读(2) 评论(1) 推荐(0)