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






innominato

 
 

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

2024年12月29日

实验7
摘要: task1.c 1 #include <stdio.h> 2 3 #define N 80 4 #define M 100 5 6 typedef struct { 7 char name[N]; 8 char author[N]; 9 } Book; 10 11 void write(); 12 阅读全文
posted @ 2024-12-29 23:20 归梦不宜秋 阅读(16) 评论(0) 推荐(0)
 

2024年12月22日

实验6
摘要: task4.c 1 #include <stdio.h> 2 #define N 10 3 4 typedef struct { 5 char isbn[20]; 6 char name[80]; 7 char author[80]; 8 double sales_price; 9 int sale 阅读全文
posted @ 2024-12-22 23:58 归梦不宜秋 阅读(11) 评论(0) 推荐(0)
 

2024年12月8日

实验5
摘要: task1_1.c 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 *p 阅读全文
posted @ 2024-12-08 22:39 归梦不宜秋 阅读(15) 评论(0) 推荐(0)
 

2024年11月11日

实验4
摘要: task1.c 1 #include <stdio.h> 2 #define N 5 3 #define M 2 4 5 void test1() { 6 int x[N] = {1, 9, 8, 4}; 7 int i; 8 9 printf("sizeof(x) = %d\n", sizeof( 阅读全文
posted @ 2024-11-11 07:04 归梦不宜秋 阅读(19) 评论(0) 推荐(0)
 

2024年10月30日

实验3
摘要: task1.c 1 #include<stdio.h> 2 char score_to_grade(int score); 3 int main(){ 4 int score; 5 char grade; 6 while(scanf("%d", &score) != EOF) { 7 grade = 阅读全文
posted @ 2024-10-30 07:16 归梦不宜秋 阅读(29) 评论(0) 推荐(0)
 

2024年10月13日

实验2
摘要: task1.c `#include <stdio.h> include <stdlib.h> include <time.h> define N 5 define N1 397 define N2 476 define N3 21 int main() { int cnt; int random_m 阅读全文
posted @ 2024-10-13 18:20 归梦不宜秋 阅读(22) 评论(0) 推荐(0)
 

2024年10月2日

实验1
摘要: task1_1.c, `#include <stdio.h> int main() { int n; for(n=1;n<3;n++){ printf(" O \n"); printf("\n"); printf("I I\n"); } return 0; } ` task1_2.c #includ 阅读全文
posted @ 2024-10-02 16:10 归梦不宜秋 阅读(18) 评论(0) 推荐(0)