上一页 1 2 3 4 5 6 7 8 9 10 ··· 43 下一页
摘要: 自动寄存柜 #include <stdio.h> #include <time.h> #include <stdlib.h> struct boxs{ int id; int passwd; int is_used; }; void init_boxs(struct boxs *, int); in 阅读全文
posted @ 2021-10-07 21:13 就是想学习 阅读(37) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <string.h> int CE(char *c, char *e){ if (strcmp(c, "你好") == 0) { strcpy(e, "Hello\n"); return 1; } strcmp(e, "Sorry\n"); r 阅读全文
posted @ 2021-10-06 14:51 就是想学习 阅读(277) 评论(0) 推荐(0) 编辑
摘要: 代码笔记,仅供自己学习使用。 下面是通过调用调用dirent的系统库实现,查看目录下内容的模块 #include "apue.h" #include <dirent.h> int main(int argc, char *argv[]){ DIR *dp; struct dirent *dirp; 阅读全文
posted @ 2021-10-01 22:06 就是想学习 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 自动售货机 #include <stdio.h> /* 通过商品索引 返回价格 */ int goods_price(int index){ switch (index) { case 1:case 2:case 3: return 1; break; case 4:case 5: return 2 阅读全文
posted @ 2021-09-30 14:03 就是想学习 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 第六题 输出文件中的注释:将C语言源程序(hello.c)文件中的所有注释去掉后存入另一个文件(new_hello.c)。 #include <stdio.h> #include <stdlib.h> #include <ctype.h> #include <string.h> #define MA 阅读全文
posted @ 2021-09-29 15:18 就是想学习 阅读(56) 评论(0) 推荐(0) 编辑
摘要: 第五题 输出含for的行:将文本文件test.txt中所有包含字符串"for"的行输出. #include <stdio.h> #include <stdlib.h> #include <ctype.h> #include <string.h> #define MAXN 5000 int main( 阅读全文
posted @ 2021-09-29 14:36 就是想学习 阅读(87) 评论(0) 推荐(0) 编辑
摘要: 第四题 将文件中的数据求和并写入文本文件尾:文件Int_Data.dat中存放了若干整数,将文件中所有数据相加,并把累加和写入该文件的最后。 #include <stdio.h> #include <stdlib.h> #include <ctype.h> int main(void){ int n 阅读全文
posted @ 2021-09-29 14:17 就是想学习 阅读(216) 评论(0) 推荐(0) 编辑
摘要: 3.比较两个文本文件是否相等:比较两个文本文件的内容是否相同,并输出两个文件中第一次出现不同字符内容的行号及列值。 #include <stdio.h> #include <stdlib.h> #include <ctype.h> int main(void){ int row, column; c 阅读全文
posted @ 2021-09-29 11:47 就是想学习 阅读(72) 评论(0) 推荐(0) 编辑
摘要: 第二题 将实数写入文件:从键盘输入若干实数(以特殊数值-1结束),分别写到一个文本文件中。 #include <stdio.h> #include <stdlib.h> #include <ctype.h> int main(void){ double number; FILE *fp; if (( 阅读全文
posted @ 2021-09-29 11:06 就是想学习 阅读(250) 评论(0) 推荐(0) 编辑
摘要: 第一题:统计文本文件中各类字符个数:分别统计一个文本文件中字母、数字及其其它字符的个数。 #include <stdio.h> #include <stdlib.h> #include <ctype.h> int main(void){ int alphabet, digit, other; cha 阅读全文
posted @ 2021-09-29 10:46 就是想学习 阅读(138) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 43 下一页