会员
众包
新闻
博问
闪存
赞助商
Trae
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
202283300588t
博客园
首页
新随笔
联系
订阅
管理
2023年6月15日
实验七
摘要: 实验任务4 程序源码 #include <stdio.h> #include <ctype.h> int main() { FILE *fp; char ch; int count = 0; fp = fopen("data4.txt", "r"); while ((ch = fgetc(fp))
阅读全文
posted @ 2023-06-15 12:55 谈伊敉
阅读(12)
评论(1)
推荐(0)
2023年6月1日
实验六
摘要: 实验任务4程序源码#include <stdio.h> #include <string.h> #define N 100 typedef struct { char num[10]; // 学号 int s1; // 期末成绩 int s2; // 平时成绩 double sum; // 总评 c
阅读全文
posted @ 2023-06-01 08:46 谈伊敉
阅读(8)
评论(1)
推荐(0)
2023年5月11日
实验五
摘要: 实验任务一 #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",
阅读全文
posted @ 2023-05-11 14:57 谈伊敉
阅读(12)
评论(1)
推荐(0)
2023年4月20日
实验四
摘要: 实验任务1 程序源码task1-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) =
阅读全文
posted @ 2023-04-20 08:41 谈伊敉
阅读(10)
评论(1)
推荐(0)
2023年4月6日
实验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-06 09:27 谈伊敉
阅读(21)
评论(1)
推荐(0)
2023年3月23日
实验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));
阅读全文
posted @ 2023-03-23 00:17 谈伊敉
阅读(12)
评论(1)
推荐(0)
2023年3月5日
实验一
摘要: 实验任务1 task1-1.c 程序源码 #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");
阅读全文
posted @ 2023-03-05 21:06 谈伊敉
阅读(11)
评论(0)
推荐(0)
公告
昵称:
谈伊敉
园龄:
2年4个月
粉丝:
0
关注:
0
<
2025年7月
>
日
一
二
三
四
五
六
29
30
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
5
6
7
8
9
搜索
常用链接
我的随笔
我的评论
我的参与
最新评论
我的标签
随笔档案
2023年6月(2)
2023年5月(1)
2023年4月(2)
2023年3月(2)
阅读排行榜
1. 实验3(21)
2. 实验七(12)
3. 实验五(12)
4. 实验2(12)
5. 实验一(11)
评论排行榜
1. 实验七(1)
2. 实验六(1)
3. 实验五(1)
4. 实验四(1)
5. 实验3(1)
最新评论
1. Re:实验七
本次实验任务全部完成。文档中的代码和图片插入方式,都符合要求。实验代码和运行结果截图显示的都正确。实验任务5和实验任务6不知道为什么写得那么复杂,可以将一个结构体变量赋值给另一个同类型的结构体变量,不...
--202183360008仲苏洋
2. Re:实验六
本次实验任务全部完成。文档中的代码和图片插入方式,都符合要求。实验代码和运行结果截图显示的都正确。
--202183360008仲苏洋
3. Re:实验五
本次实验任务全部完成。文档中的代码和图片插入方式,都符合要求。实验任务2部分问题没有回答。task2_2的程序运行结果应该有sizeof(s1) = 4,不知道为什么截图是sizeof(s1) = 8...
--202183360008仲苏洋
4. Re:实验四
本次实验任务全部完成。文档中的代码和图片插入方式,都符合要求。task1_2没有回答最后一个问题。实验任务3没有回答如果想要更精确统计单词数、最长单词数,你认为可以如何处理?实验任务4不用把不完整的代...
--202183360008仲苏洋
5. Re:实验3
本次实验任务全部完成。文档中的代码和图片插入方式,都符合要求。实验任务2,我怀疑你把添加的那一行源代码中的ll看成11了,所以p=之后才会有那么多空格。实验任务7主函数第二层循环用了j<i/2,减少了...
--202183360008仲苏洋
点击右上角即可分享