C fscanf读取错误

maychard1121 2015-04-09 08:57:53
数据:
800 2 128 230400
800.dat 212 200 10 0 -101 -25183 0 ECG1
800.dat 212 200 10 0 123 10510 0 ECG2

#include<stdio.h>
#include <stdlib.h>
void main()
{
int i,j,t;
int nosig, Fs, gain, basevalue;
int *a;
long p,num;
int mh0,mh1,m,n;
float mh00,mh11; /*mh00组和mh11组心电数据,mh00,mh11获得的数据保存在mh01数组中*/
/*字符变量的数组*/

//------ LOAD HEADER DATA --------------------------------------------------
FILE *fid;
if((fid=fopen("800.hea","r"))==NULL)
{
printf("Cannot open file strike any key exit!");

}

fscanf(fid,"%*d%d%d\n",&nosig,&Fs);
printf("%d,%d\n",nosig,Fs);

fscanf(fid,"%*[^\n]%*c"); // 跳1 行
//取第二行的200 0 出错了,请教下
fscanf(fid,"%*c%*d%d%*d%d",&gain,&basevalue); // 读 2 个 int
printf("%d%d\n",gain,basevalue);

}
...全文
104 4 打赏 收藏 转发到动态 举报
写回复
用AI写文章
4 条回复
切换为时间正序
请发表友善的回复…
发表回复
苏叔叔 2015-04-09
  • 打赏
  • 举报
回复

fid = fopen("800.hea", "r")
?是不是800.dat
maychard1121 2015-04-09
  • 打赏
  • 举报
回复
谢谢 知道了
赵4老师 2015-04-09
  • 打赏
  • 举报
回复
Format Specification Fields: scanf and wscanf Functions A format specification has the following form: %
  • [width] [{h | l | I64 | L}]type The format argument specifies the interpretation of the input and can contain one or more of the following: White-space characters: blank (' '); tab ('\t'); or newline ('\n'). A white-space character causes scanf to read, but not store, all consecutive white-space characters in the input up to the next non–white-space character. One white-space character in the format matches any number (including 0) and combination of white-space characters in the input. Non–white-space characters, except for the percent sign (%). A non–white-space character causes scanf to read, but not store, a matching non–white-space character. If the next character in stdin does not match, scanf terminates. Format specifications, introduced by the percent sign (%). A format specification causes scanf to read and convert characters in the input into values of a specified type. The value is assigned to an argument in the argument list. The format is read from left to right. Characters outside format specifications are expected to match the sequence of characters in stdin; the matching characters in stdin are scanned but not stored. If a character in stdin conflicts with the format specification, scanf terminates, and the character is left in stdin as if it had not been read. When the first format specification is encountered, the value of the first input field is converted according to this specification and stored in the location that is specified by the first argument. The second format specification causes the second input field to be converted and stored in the second argument, and so on through the end of the format string. An input field is defined as all characters up to the first white-space character (space, tab, or newline), or up to the first character that cannot be converted according to the format specification, or until the field width (if specified) is reached. If there are too many arguments for the given specifications, the extra arguments are evaluated but ignored. The results are unpredictable if there are not enough arguments for the format specification. Each field of the format specification is a single character or a number signifying a particular format option. The type character, which appears after the last optional format field, determines whether the input field is interpreted as a character, a string, or a number. The simplest format specification contains only the percent sign and a type character (for example, %s). If a percent sign (%) is followed by a character that has no meaning as a format-control character, that character and the following characters (up to the next percent sign) are treated as an ordinary sequence of characters, that is, a sequence of characters that must match the input. For example, to specify that a percent-sign character is to be input, use %%. An asterisk (*) following the percent sign suppresses assignment of the next input field, which is interpreted as a field of the specified type. The field is scanned but not stored.
赵4老师 2015-04-09
  • 打赏
  • 举报
回复
//文件800.hea的内容:
//800 2 128 230400
//800.dat 212 200 10 0 -101 -25183 0 ECG1
//800.dat 212 200 10 0 123 10510 0 ECG2
#include <stdio.h>
#include <stdlib.h>
void main() {
    int i,j,t;
    int nosig, Fs, gain, basevalue;
    int *a;
    long p,num;
    int mh0,mh1,m,n;
    float mh00,mh11;       /*mh00组和mh11组心电数据,mh00,mh11获得的数据保存在mh01数组中*/
    /*字符变量的数组*/

    //------ LOAD HEADER DATA --------------------------------------------------
    FILE *fid;
    if((fid=fopen("800.hea","r"))==NULL) {
        printf("Cannot open file strike any key exit!");
        return;
    }

    fscanf(fid,"%*d%d%d\n",&nosig,&Fs);
    printf("%d,%d\n",nosig,Fs);

    fscanf(fid,"%*[^\n]\n");  // 跳1 行
    //取第二行的200 0
    fscanf(fid,"%*s%*d%d%*d%d%*[^\n]\n",&gain,&basevalue);
    printf("%d,%d\n",gain,basevalue);
    //取第三行的200 0
    fscanf(fid,"%*s%*d%d%*d%d%*[^\n]\n",&gain,&basevalue);
    printf("%d,%d\n",gain,basevalue);
    fclose(fid);
}
//2,128
//200,0
//200,0
//

69,382

社区成员

发帖
与我相关
我的任务
社区描述
C语言相关问题讨论
社区管理员
  • C语言
  • 花神庙码农
  • 架构师李肯
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧