会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
ethereal-0
博客园
首页
新随笔
联系
订阅
管理
2023年6月9日
实验7
摘要: #include <stdlib.h>#include <stdio.h> int main(){ FILE *fp; int i=0; char ch; fp=fopen("D:\data4.txt","r"); if(fp==NULL) {printf("fail\n");return 1;}
阅读全文
posted @ 2023-06-09 22:16 千里落花风。
阅读(25)
评论(0)
推荐(0)
2023年5月26日
实验6
摘要: 实验四 #include <stdio.h> #include<string.h> #define N 100 typedef struct { char num[10]; // 学号 int s1; // 期末成绩 int s2; // 平时成绩 double sum; // 总评 char le
阅读全文
posted @ 2023-05-26 17:37 千里落花风。
阅读(11)
评论(0)
推荐(0)
2023年5月5日
实验5
摘要: 实验任务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) printf("%d",x[i]); printf("\n"); //2 写法1 for
阅读全文
posted @ 2023-05-05 14:29 千里落花风。
阅读(27)
评论(0)
推荐(0)
2023年4月15日
实验4
摘要: 实验任务1 #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", sizeo
阅读全文
posted @ 2023-04-15 17:50 千里落花风。
阅读(12)
评论(0)
推荐(0)
2023年4月2日
实验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-04-02 16:28 千里落花风。
阅读(23)
评论(0)
推荐(0)
2023年3月18日
实验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(time(0)
阅读全文
posted @ 2023-03-18 13:29 千里落花风。
阅读(28)
评论(0)
推荐(0)
2023年3月3日
实验1
摘要: 实验任务1 task1-1 #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"); ret
阅读全文
posted @ 2023-03-03 12:01 千里落花风。
阅读(21)
评论(0)
推荐(0)
公告