2023年12月21日
摘要: task1 #define _CRT_SECURE_NO_WARNINGS // 从文本文件data1.txt中读取图书信息,并打印输出到屏幕 #include <stdio.h> #define N 80 #define M 100 typedef struct { char name[N]; / 阅读全文
posted @ 2023-12-21 23:57 wujinyu 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 任务一 阅读全文
posted @ 2023-12-21 13:44 wujinyu 阅读(1) 评论(0) 推荐(0) 编辑
  2023年11月6日
摘要: 实验任务1 源代码 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <time.h> 4 #include <windows.h> 5 #define N 80 6 void print_text(int line, int col, ch 阅读全文
posted @ 2023-11-06 00:58 wujinyu 阅读(6) 评论(0) 推荐(0) 编辑
  2023年9月28日
摘要: 实验二源代码 #include<stdio.h> #include<stdlib.h> #include<math.h> int main() { int a,b,c; scanf("%d%d%d",&a,&b,&c); if(a+b>c&&a+c>b&&b+c>a) printf("这三个数可以构 阅读全文
posted @ 2023-09-28 15:06 wujinyu 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 实验1_1源代码//打印小人 #include<stdio.h> #include<stdlib.h> int main() { printf(" O\n"); printf("<H>\n"); printf("I I\n"); return 0; } 实验1_1运行截图 实验1_2源代码//打印垂 阅读全文
posted @ 2023-09-28 14:50 wujinyu 阅读(29) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/202383290402wjy/ 阅读全文
posted @ 2023-09-28 14:32 wujinyu 阅读(16) 评论(0) 推荐(0) 编辑