Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
摘要: 1 #include<stdio.h> char score_to_grade(int score); int main() { int score; char grade; while (scanf_s("%d", &score) != EOF) { grade = score_to_grade( 阅读全文
posted @ 2025-04-08 13:01 卢诗涵 阅读(6) 评论(0) 推荐(0)
摘要: 一 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 int main() { int number; int i; srand(time(0)); for (i = 0; i < N;++i) { number 阅读全文
posted @ 2025-03-22 14:11 卢诗涵 阅读(4) 评论(0) 推荐(0)
摘要: #include <stdio.h> int main() { printf(" o \n"); printf("<H>\n"); printf("I I\n"); printf(" o \n"); printf("<H>\n"); printf("I I\n"); return 0; } #inc 阅读全文
posted @ 2025-03-09 09:57 卢诗涵 阅读(6) 评论(0) 推荐(0)