C++读取txt文件中的多列数据源程序
时间: 2023-09-27 13:08:29 浏览: 100
以下是一个简单的C语言程序,用于读取txt文件中的多列数据:
```c
#include <stdio.h>
int main() {
FILE *fp;
int col1, col2, col3;
fp = fopen("data.txt", "r");
if (fp == NULL) {
printf("无法打开文件!\n");
return 1;
}
while (fscanf(fp, "%d %d %d", &col1, &col2, &col3) != EOF) {
printf("%d %d %d\n", col1, col2, col3);
}
fclose(fp);
return 0;
}
```
上述程序通过 `fopen()` 函数打开了名为 `data.txt` 的文本文件,并通过 `fscanf()` 函数每次读取一行中的三列数据(假设每列都是整数),最后将读入的数据输出到屏幕上。
阅读全文