会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
zhuquekameitielongyu
博客园
首页
新随笔
联系
订阅
管理
2023年6月12日
实验7
摘要: task1_1 #include <stdio.h> #define N 7 #define M 80 typedef struct{ char name[M]; char author[M]; } Book; int main(){ Book x[N] = {{"《雕塑家》","斯科特·麦克劳德"
阅读全文
posted @ 2023-06-12 21:43 卡妹铁龙鱼
阅读(14)
评论(0)
推荐(0)
2023年6月1日
实验6
摘要: task1 #include <stdio.h> #include <string.h> #define N 3 typedef struct student { int id; char name[20]; char subject[20]; double perf; double mid; do
阅读全文
posted @ 2023-06-01 08:35 卡妹铁龙鱼
阅读(18)
评论(0)
推荐(0)
2023年5月11日
实验5
摘要: task1_1 #include <stdio.h> #define N 4 int main() { int x[N] = {1, 9, 8, 4}; int i; int *p; for (i = 0;i < N; ++i) printf("%d", x[i]); printf("\n"); f
阅读全文
posted @ 2023-05-11 12:26 卡妹铁龙鱼
阅读(17)
评论(0)
推荐(0)
2023年4月20日
实验4
摘要: task1 #include <stdio.h> #define N 4 int main(){ int a[N] = {2, 0, 2, 3}; char b[N] = {'2', '0', '2', '3'}; int i; printf("sizeof(int) = %d\n", sizeof
阅读全文
posted @ 2023-04-20 14:46 卡妹铁龙鱼
阅读(21)
评论(0)
推荐(0)
2023年4月5日
实验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[]); void
阅读全文
posted @ 2023-04-05 23:22 卡妹铁龙鱼
阅读(17)
评论(0)
推荐(0)
2023年3月22日
实验二
摘要: 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(0
阅读全文
posted @ 2023-03-22 23:23 卡妹铁龙鱼
阅读(22)
评论(0)
推荐(0)
2023年3月8日
实验一
摘要: task1 #include <stdio.h> int main() { printf(" O \n"); printf("<H>\n"); printf("I I\n"); printf(" O \n"); printf("<H>\n"); printf("I I\n"); return 0;
阅读全文
posted @ 2023-03-08 14:16 卡妹铁龙鱼
阅读(20)
评论(0)
推荐(0)
公告