从文件a.txt中读取三个整数保存到b.txt中C语言
时间: 2024-03-20 22:42:20 浏览: 64
C读取txt文件,获取数据
4星 · 用户满意度95%
可以使用C语言中的文件操作函数来实现从文件a.txt中读取三个整数并将它们保存到文件b.txt中。具体实现步骤如下:
1. 打开文件a.txt和b.txt,可以使用fopen函数来打开文件。
```c
FILE *fp_in = fopen("a.txt", "r"); // 打开a.txt文件,只读模式
if (fp_in == NULL) {
printf("无法打开文件a.txt\n");
return -1;
}
FILE *fp_out = fopen("b.txt", "w"); // 打开b.txt文件,只写模式
if (fp_out == NULL) {
printf("无法打开文件b.txt\n");
fclose(fp_in); // 关闭a.txt文件
return -1;
}
```
2. 从文件a.txt中读取三个整数,可以使用fscanf函数来读取。
```c
int a, b, c;
int ret = fscanf(fp_in, "%d %d %d", &a, &b, &c);
if (ret != 3) {
printf("读取文件a.txt失败\n");
fclose(fp_in); // 关闭a.txt文件
fclose(fp_out); // 关闭b.txt文件
return -1;
}
```
3. 将三个整数保存到文件b.txt中,可以使用fprintf函数来写入。
```c
fprintf(fp_out, "%d %d %d", a, b, c);
```
4. 关闭文件a.txt和b.txt,可以使用fclose函数来关闭文件。
```c
fclose(fp_in);
fclose(fp_out);
```
完整代码实现如下:
```c
#include <stdio.h>
int main() {
FILE *fp_in = fopen("a.txt", "r"); // 打开a.txt文件,只读模式
if (fp_in == NULL) {
printf("无法打开文件a.txt\n");
return -1;
}
FILE *fp_out = fopen("b.txt", "w"); // 打开b.txt文件,只写模式
if (fp_out == NULL) {
printf("无法打开文件b.txt\n");
fclose(fp_in); // 关闭a.txt文件
return -1;
}
int a, b, c;
int ret = fscanf(fp_in, "%d %d %d", &a, &b, &c);
if (ret != 3) {
printf("读取文件a.txt失败\n");
fclose(fp_in); // 关闭a.txt文件
fclose(fp_out); // 关闭b.txt文件
return -1;
}
fprintf(fp_out, "%d %d %d", a, b, c);
fclose(fp_in);
fclose(fp_out);
return 0;
}
```
注意:以上代码只是示例,实际应用中需要进行错误处理以保证程序的健壮性。
阅读全文