读取txt文件时无法分栏
Can't separate columns when reading txt file
嗨,我设法读取了 txt 文件并在控制台上打印了它们 window。 select 给了我一个任务,对一定数量的数据进行采样。
txt 文件示例:
Voltage (V),Current (I),Power (W)
50,2,100,
51,2,102,
52,2,104,
等..如何只显示电压和功率列?
#include <stdio.h>
int main(void) {
int V, I, W;//float ?
FILE *fp = fopen("data.txt", "r");
while(fgetc(fp) != '\n')
;//skip first line
while(3==fscanf(fp, "%d,%d,%d,", &V, &I, &W)){
printf("V:%d, I:%d, W:%d\n", V, I, W);
}
fclose(fp);
return 0;
}
嗨,我设法读取了 txt 文件并在控制台上打印了它们 window。 select 给了我一个任务,对一定数量的数据进行采样。
txt 文件示例:
Voltage (V),Current (I),Power (W)
50,2,100,
51,2,102,
52,2,104,
等..如何只显示电压和功率列?
#include <stdio.h>
int main(void) {
int V, I, W;//float ?
FILE *fp = fopen("data.txt", "r");
while(fgetc(fp) != '\n')
;//skip first line
while(3==fscanf(fp, "%d,%d,%d,", &V, &I, &W)){
printf("V:%d, I:%d, W:%d\n", V, I, W);
}
fclose(fp);
return 0;
}