10 2022 档案

摘要:#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=rand()%500 阅读全文
posted @ 2022-10-23 21:22 李程远 阅读(41) 评论(0) 推荐(0)
摘要:实践任务1 1 #include<stdio.h> int main() { printf(" o o \n"); printf("<H> <H>\n"); printf("I I I I\n"); return 0; } 2 #include<stdio.h> int main() { print 阅读全文
posted @ 2022-10-16 12:44 李程远 阅读(105) 评论(0) 推荐(0)