04 2021 档案

实验三
摘要:#include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 int main() { int x, n; srand(time(0)); for(n=1; n<=N; n++) { x = rand() % 100; pr 阅读全文

posted @ 2021-04-20 00:00 是露露吖 阅读(79) 评论(0) 推荐(0)

实验2 c语言中的表达式及输入输出函数编程应用
摘要:#include <stdio.h> int main() { int num; scanf("%d", &num); printf("2049%04d\n", num); scanf("%d", &num); printf("2049%04d\n", num); scanf("%d", &num) 阅读全文

posted @ 2021-04-05 10:48 是露露吖 阅读(554) 评论(0) 推荐(0)

导航