会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
nbb233
博客园
首页
新随笔
联系
订阅
管理
2023年6月15日
实验7
摘要: #include<stdio.h> #include<stdlib.h> int main() { char s[100]; FILE *fp; int i = 0,j,k = 0; char ch; fp = fopen("data4.txt","rb"); if(fp == NULL) { pr
阅读全文
posted @ 2023-06-15 08:33 显微
阅读(10)
评论(0)
推荐(0)
2023年5月31日
实验6
摘要: task4 #include <stdio.h> #include<string.h> #define N 100 typedef struct { char num[10]; // 学号 int s1; // 期末成绩 int s2; // 平时成绩 double sum; // 总评 char
阅读全文
posted @ 2023-05-31 23:55 显微
阅读(19)
评论(0)
推荐(0)
2023年5月10日
实验5
摘要: task1-2 #include<stdio.h> int main() { int x[2][4]={{1,9,8,4},{2,0,4,9}}; int i,j; int *p; int(*q)[4]; for(i=0;i<2;++i){ for(j=0;j<4;++j) printf("%d",
阅读全文
posted @ 2023-05-10 23:48 显微
阅读(11)
评论(0)
推荐(0)
2023年4月20日
实验4
摘要: #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(int)
阅读全文
posted @ 2023-04-20 07:21 显微
阅读(16)
评论(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 pri
阅读全文
posted @ 2023-04-05 22:53 显微
阅读(25)
评论(0)
推荐(0)
2023年3月21日
shiyan 2
摘要: #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)); for(i=
阅读全文
posted @ 2023-03-21 22:03 显微
阅读(19)
评论(0)
推荐(0)
2023年3月3日
实验1
摘要: #include <stdio.h> int main() { printf("o\n"); printf("<H>\n"); printf("I I\n"); system("pause"); return 0; } task1 #include <stdio.h>> int main() { i
阅读全文
posted @ 2023-03-03 12:53 显微
阅读(18)
评论(0)
推荐(0)
公告