gpt4 book ai didi

c - 从 C 中的文件中读取混合字符和文字数字

转载 作者:行者123 更新时间:2023-11-30 19:22:43 25 4
gpt4 key购买 nike

假设我想读入数字 1 并乘以数字 4

5000     49     3.14     Z      100
0322 35 9.21 X 60

目前我有,但只能复制信息,不能操纵信息

#include <stdio.h>
#include <stdlib.h>
#define FILE_1 "File1.txt"
#define FILE_2 "File2.txt"
int main (void)
{
// Local Declarations
char score;
int curCh;
int count = 0;
FILE* sp1;
FILE* sp2;

if (!(sp1 = fopen (FILE_1, "r"))) //check if file is there
{
printf ("\nError opening %s.\n", FILE_1);
return (1);
} // if open error
if (!(sp2 = fopen (FILE_2, "w")))
{
printf ("\nError opening %s.\n", FILE_2);
return (2);
} // if open error

while((curCh = fgetc(sp1)) != EOF)
{
printf ("%c", curCh); //copy the contents
count++;
} // while


return 0;
}

最佳答案

同意 Randy 和 Jonathan 的评论,即您应该使用 fgets() 来处理整行。如果您有已知的分隔符(如制表符)和已知的列,则可以使用 strtok() 来标记分隔符上的行,然后使用计数来提取所需的值。

除了 sscanf() 之外,您还可以 使用 atoi() 和 atof() 成功使用 strtol() 如下面 Randy 的评论所述,并在 StackOverflow 上的其他地方引用:

关于c - 从 C 中的文件中读取混合字符和文字数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15423134/

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