会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
KHAKI040905
博客园
首页
新随笔
联系
订阅
管理
2023年6月11日
实验7
摘要: 实验任务4 程序源码 #include <stdio.h> #include<stdlib.h> int main() { int i; FILE *fp; char ch; fp= fopen("C:\\Users\\47068\\Desktop\\data4.txt", "r"); if (fp
阅读全文
posted @ 2023-06-11 13:56 铁欣玥
阅读(15)
评论(0)
推荐(0)
2023年5月26日
实验六
摘要: 实验任务1 程序源码 #include <stdio.h> #include <string.h> #define N 3 typedef struct student { int id; char name[20]; char subject[20]; double perf; double mi
阅读全文
posted @ 2023-05-26 18:45 铁欣玥
阅读(31)
评论(0)
推荐(0)
2023年5月6日
实验5
摘要: 实验任务1 程序源码1.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) prin
阅读全文
posted @ 2023-05-06 20:35 铁欣玥
阅读(16)
评论(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",
阅读全文
posted @ 2023-04-15 23:35 铁欣玥
阅读(29)
评论(0)
推荐(0)
2023年4月1日
实验3
摘要: 试验任务1 程序源码 #include <stdlib.h> #include <time.h> #include <windows.h> #define N 80 void print_text(int line, int col, char text[]); void print_spaces(
阅读全文
posted @ 2023-04-01 14:14 铁欣玥
阅读(27)
评论(0)
推荐(0)
2023年3月19日
实验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-19 00:05 铁欣玥
阅读(26)
评论(0)
推荐(0)
2023年3月3日
实验1
摘要: 实验一 程序源码 水平 //打印一个字符小人 #include <stdio.h> int main() { printf(" o o\n"); printf("<H> <H>\n"); printf("I I I I\n"); return 0; } 运行结果 垂直 #include <stdio
阅读全文
posted @ 2023-03-03 10:55 铁欣玥
阅读(23)
评论(0)
推荐(0)
公告