用c++编程,读取一个A000.txt文档,将文档的数据读入数组a[]中
时间: 2024-05-04 09:15:43 浏览: 88
C++实现从.txt文件中读取数据存入数组,将数组数据写入.txt文件.rar vc6.0源代码
5星 · 资源好评率100%
好的,我可以回答这个问题。以下是读取一个A000.txt文档并将数据读入数组a[]中的c代码:
```c
#include <stdio.h>
int main() {
FILE *fp;
int a[1000], i = 0;
fp = fopen("A000.txt", "r");
if (fp == NULL) {
printf("File not found!\n");
return 0;
}
while (fscanf(fp, "%d", &a[i]) == 1) {
i++;
}
fclose(fp);
return 0;
}
```
在这段代码中,我们首先打开文件A000.txt,如果文件不存在则输出错误信息并结束程序。然后我们使用循环读取文件中的每一个整数,并将它们存入数组a[]中。最后,我们关闭文件并结束程序。
阅读全文