会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
wwwtttt
博客园
首页
新随笔
联系
订阅
管理
2023年5月25日
task.6
摘要: #include <stdio.h> #include <string.h> #include <stdlib.h> #define N 3 // 运行程序输入测试时,可以把这个数组改小一些输入测试 typedef struct student { int id; // 学号 char name[2
阅读全文
posted @ 2023-05-25 23:05 wwwtttt
阅读(52)
评论(0)
推荐(0)
2023年5月5日
task.5
摘要: 1.1 #include <stdio.h> #include <stdlib.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])
阅读全文
posted @ 2023-05-05 22:51 wwwtttt
阅读(24)
评论(0)
推荐(0)
2023年4月16日
task.4
摘要: #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("sizeof(int) =
阅读全文
posted @ 2023-04-16 17:36 wwwtttt
阅读(29)
评论(0)
推荐(0)
2023年4月1日
task3
摘要: #include <stdio.h> #include <stdlib.h> #include <time.h> #include <windows.h> #define N 80 void print_text(int line, int col, char text[]); // 函数声明 vo
阅读全文
posted @ 2023-04-01 23:45 wwwtttt
阅读(38)
评论(0)
推荐(0)
2023年3月17日
task2
摘要: #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) ); f
阅读全文
posted @ 2023-03-17 23:26 wwwtttt
阅读(58)
评论(0)
推荐(0)
2023年3月2日
task1
摘要: #include <stdio.h>#include <stdlib.h> int main() { printf(" o\n"); printf("<H>\n"); printf("I I\n"); system("pause"); return 0; } #include <stdio.h> i
阅读全文
posted @ 2023-03-02 17:21 wwwtttt
阅读(48)
评论(0)
推荐(0)
公告