会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
moreless-xu
博客园
首页
新随笔
联系
订阅
管理
2023年6月10日
实验七
摘要: 实验任务4 程序代码: #include <stdio.h> #include <stdlib.h> int main(){ FILE *fp; int i=0; char ch; fp=fopen("D:\\private\\learning\\data\\data4.txt","r"); if(
阅读全文
posted @ 2023-06-10 17:20 moreless-xu
阅读(34)
评论(1)
推荐(0)
2023年5月25日
实验六
摘要: 实验任务1 程序代码: #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h> #include <string.h> #define N 3 typedef struct student{ int id;//学号
阅读全文
posted @ 2023-05-25 21:23 moreless-xu
阅读(21)
评论(1)
推荐(0)
2023年5月10日
实验5
摘要: 实验任务1 task1_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-10 20:12 moreless-xu
阅读(17)
评论(1)
推荐(0)
2023年4月18日
实验4
摘要: 实验任务1 task1_1: 程序代码: #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-18 11:01 moreless-xu
阅读(12)
评论(1)
推荐(0)
2023年3月31日
实验3
摘要: 实验任务1 程序代码: #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-03-31 12:58 moreless-xu
阅读(43)
评论(1)
推荐(0)
2023年3月16日
实验2
摘要: 实验任务1 程序代码: #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(ti
阅读全文
posted @ 2023-03-16 21:51 moreless-xu
阅读(43)
评论(2)
推荐(0)
2023年3月3日
实验1
摘要: 实验任务1 程序代码: #include <stdio.h> #include <stdlib.h> int main() { printf(" 0\n"); printf("<H>\n"); printf("I I\n"); system("pause"); return 0; } 运行结果: 结
阅读全文
posted @ 2023-03-03 10:48 moreless-xu
阅读(21)
评论(0)
推荐(0)
2023年3月2日
task1.c
摘要: #include <stdlib.h> #include <stdio.h> int main() { printf(" 0\n"); printf("<H>\n"); printf("I I\n"); system("pause"); return 0; }
阅读全文
posted @ 2023-03-02 15:55 moreless-xu
阅读(18)
评论(0)
推荐(0)
公告