gpt4 book ai didi

读取txt文件时无法分隔列

转载 作者:行者123 更新时间:2023-11-30 19:17:37 28 4
gpt4 key购买 nike

嗨,我设法读取 txt 文件并将它们打印在控制台窗口上。我的任务是选择和采样一定量的数据。

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文件时无法分隔列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27919544/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com