#include<stdio.h> #include<stdlib.h> int main() { FILE *fp; char ch; fp=fopen("file1.dat","rb"); while(!feof(fp)) { ch=fgetc(fp); putchar(ch); } fclos ...
分类:
其他好文 时间:
2019-12-29 15:17:34
阅读次数:
120
1.1: // 将file1.txt中小写字母转换成大写后,另存为file2.txt #include <stdio.h> #include <stdlib.h> int main() { FILE *fin, *fout; // 定义文件类型指针 int ch; fin = fopen("file ...
分类:
其他好文 时间:
2019-12-28 23:11:10
阅读次数:
148
part1 ex1 更改后实验结果仍然正确 int main() { STU st, stmax, stmin; int i; FILE *fp; // 以只读文本方式打开文件file1.dat fp = fopen("file1.dat", "r"); if( !fp ) { // 如果打开失败, ...
分类:
其他好文 时间:
2019-12-28 11:27:35
阅读次数:
68
#include <stdio.h> #include <stdlib.h> #include <string.h> const int N = 10; // 定义结构体类型struct student,并定义其别名为STU typedef struct student { long int id; ...
分类:
其他好文 时间:
2019-12-27 21:52:22
阅读次数:
63
项目需求项目8的实现,main函数太臃肿,不便于阅读和维护。项目实现用函数来优化。#include<stdio.h>#include<string.h>#include<stdlib.h>FILE*file;voidinit(void){//打开文件file=fopen("users.txt","r");if(!file){//等效于file==NULLprin
分类:
其他好文 时间:
2019-12-24 18:43:18
阅读次数:
81
//大文件排序 function countsLines($path){ $fd = fopen($path,"r"); $total=0; while(!feof($fd)){ $total++; fgets($fd); } return $total; } $filePath = "./file ...
分类:
编程语言 时间:
2019-12-24 10:04:50
阅读次数:
89
任务一、二 #include <stdio.h> #include <stdlib.h> #include <math.h> int main() { FILE *fp = fopen("loss.txt", "w"); if (fp == NULL){ printf("Failed to open ...
分类:
编程语言 时间:
2019-12-22 12:37:02
阅读次数:
69
一.代码 二.程序运行 初始界面 输入姓名 创建文档 读取数据 三. 任务一 任务二 任务三 四.system()运用 1.system("color F0") 可以改变控制台的前景色和背景 , system(“color 0A”); 其中color后面的0是背景色代号,A是前景色代号。各颜色代码如 ...
分类:
编程语言 时间:
2019-12-21 11:46:27
阅读次数:
81
最近读取数据较多,经常遇到这个问题 碰到问题后按如下处理: 在根目录点击右键选择属性 选中配置属性 C/C++中的预处理器,在预处理器定义栏点击右侧的下拉箭头并选择编辑 会出现如下界面 将_CRT_SECURE_NO_WARNINGS粘贴到最后一行 确定后再编译,问题解决 来源:https://bl ...
分类:
其他好文 时间:
2019-12-20 01:23:44
阅读次数:
170
任务一: 你现在拥有一个数组,数组中储存着总共10个人的姓名字符串 你需要为每个人创建一个txt文件,以他们的名字命名。 例如: 生成 笨笨.txt文件 代码: 运行结果截图: 任务四: 试着使用一下system("cls"),system("pause")这两个命令,看看这两个 命令能不能对你的程 ...
分类:
编程语言 时间:
2019-12-19 22:54:47
阅读次数:
113