• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






7perch

 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理

2023年12月20日

试验七
摘要: 实验四 源代码 1 #include <stdio.h> 2 #include <stdlib.h> 3 4 int main() 5 { 6 int count = 0; 7 char a; 8 FILE *fp; 9 fp = fopen("D:\\记录\\QQ下载\\实验7数据文件及部分代码\ 阅读全文
posted @ 2023-12-20 19:05 秦始皇,打钱 阅读(13) 评论(0) 推荐(0)
 

2023年12月15日

实验六
摘要: 实验四 源代码 1 #include <stdio.h> 2 #define N 10 3 4 typedef struct { 5 char isbn[20]; // isbn号 6 char name[80]; // 书名 7 char author[80]; // 作者 8 double sa 阅读全文
posted @ 2023-12-15 11:46 秦始皇,打钱 阅读(34) 评论(0) 推荐(0)
 

2023年11月27日

实验5
摘要: 实验一 源代码 1 #include <stdio.h> 2 #define N 5 3 4 void input(int x[], int n); 5 void output(int x[], int n); 6 void find_min_max(int x[], int n, int *pmi 阅读全文
posted @ 2023-11-27 17:19 秦始皇,打钱 阅读(13) 评论(0) 推荐(0)
 

2023年11月14日

实验4
摘要: 实验1 源代码 1 #include <stdio.h> 2 #define N 4 3 4 void test1() { 5 int a[N] = {1, 9, 8, 4}; 6 int i; 7 8 printf("sizeof(a) = %d\n", sizeof(a)); 9 10 for 阅读全文
posted @ 2023-11-14 10:26 秦始皇,打钱 阅读(14) 评论(0) 推荐(0)
 

2023年10月31日

实验3
摘要: task1 源代码 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <time.h> 4 #include <windows.h> 5 #define N 80 6 7 void print_text(int line, int col, 阅读全文
posted @ 2023-10-31 23:29 秦始皇,打钱 阅读(21) 评论(0) 推荐(0)
 

2023年10月17日

实验2
摘要: 实验1 源代码 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <time.h> 4 #define N 5 5 #define N1 374 6 #define N2 465 7 int main() 8 { 9 int number; 阅读全文
posted @ 2023-10-17 23:06 秦始皇,打钱 阅读(24) 评论(0) 推荐(0)
 

2023年10月5日

实验1
摘要: 实验1 源代码 1 // 打印一个字符小人 2 3 #include <stdio.h> 4 int main() 5 { 6 printf(" o \n"); 7 printf("<H>\n"); 8 printf("I I\n"); 9 printf(" o \n"); 10 printf("< 阅读全文
posted @ 2023-10-05 10:55 秦始皇,打钱 阅读(13) 评论(0) 推荐(0)