会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
1qq2ww3ee
博客园
首页
新随笔
联系
订阅
管理
2023年6月
实验7
摘要: task4 编程代码 #include <stdio.h> #include <stdlib.h> int main() { FILE *fp; int x = 0; char ch; if((fp = fopen("d:\\data4.txt", "r")) == NULL) { printf("
阅读全文
posted @ 2023-06-13 10:17 无良无常
阅读(13)
评论(0)
推荐(0)
2023年5月
实验6
摘要: task4 编程代码 #include <stdio.h> #include <stdlib.h> #include <string.h> #define N 100 typedef struct{ char num[10]; int s1; int s2; double sum; char lev
阅读全文
posted @ 2023-05-31 19:22 无良无常
阅读(14)
评论(0)
推荐(0)
实验5
摘要: task1.1 编程代码 #include <stdio.h> #define N 4 int main() { int x[N] = {1, 9, 8, 4}; int i; int *p; // 方式1:通过数组名和下标遍历输出数组元素 for (i = 0; i < N; ++i) print
阅读全文
posted @ 2023-05-10 20:24 无良无常
阅读(11)
评论(0)
推荐(0)
2023年4月
实验4
摘要: task1 编程代码 #include <stdio.h> #include<stdlib.h> #define N 4 int main() { int a[N] = {2, 0, 2, 3}; char b[N] = {'2', '0', '2', '3'}; int i; printf("si
阅读全文
posted @ 2023-04-19 20:08 无良无常
阅读(15)
评论(0)
推荐(0)
实验3
摘要: task1 编程代码 #include <stdio.h> #include <stdlib.h> #include <time.h> #include <windows.h> #define N 80 void print_text(int line, int col, char text[]);
阅读全文
posted @ 2023-04-05 13:55 无良无常
阅读(18)
评论(0)
推荐(0)
2023年3月
实验2
摘要: task1 编程代码 #include<stdio.h> #include<stdlib.h> #include<time.h> #define N 5 #define R1 586 #define R2 701 int main() { int number; int i; srand(time(
阅读全文
posted @ 2023-03-22 22:33 无良无常
阅读(19)
评论(0)
推荐(0)
实验1
摘要: task1 编程代码 #include<stdio.h> #include<stdlib.h> int main() { printf(" 0\n"); printf("<H>\n"); printf("I I\n"); printf(" 0\n"); printf("I I\n"); system
阅读全文
posted @ 2023-03-07 10:59 无良无常
阅读(22)
评论(0)
推荐(0)
公告