10 2022 档案

 
实验2 C语言控制语句应用编程
摘要:1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <time.h> 4 #define N 5 5 int main() 6 { 7 int number; 8 int i; 9 srand(time(0)); 10 for (i = 0; 阅读全文
posted @ 2022-10-19 16:32 汪毅恒 阅读(62) 评论(0) 推荐(0)
实验1 C语言开发环境使用和数据类型、运算符、表达式
摘要:#include <stdio.h> int main() { printf(" O 0 \n"); printf("<H> <H> \n"); printf("I I I I \n"); return 0; } 1 #include <stdio.h> 2 int main() 3 { 4 pri 阅读全文
posted @ 2022-10-14 13:02 汪毅恒 阅读(71) 评论(0) 推荐(0)