C-使用FSCANF查找空线



我应该阅读一些从" a"到" z"中命名的变量,然后对它们进行评估。变量中的值是矩阵。这是示例输入:

B=[5 2 4; 0 2 -1; 3 -5 -4]
E=[-6 -5 -8; -1 -1 -10; 10 0 -7]
R=[-1 -7 6; -2 9 -4; 6 -10 2]
R+E+B

我编写了一种正确读取所有变量的算法。但是,我无法检测到空线路。我写了这篇文章:

// FILE* input = stdin; 
while(true) {
    char name = '#';
    // Reads the matrix, returns null on error
    Matrix* A = matrix_read_prp_2(input, &name);
    if( A==NULL ) {
        // throw error or something
    }
    // Print the matrix
    matrix_print_prp_2(A, stdout);
    // consume one new line
    char next;
    if(fscanf(input, "n%c", &next)!=1)
        // Program returns error here
    if(next=='n')
        break;
    // if not new line, put the char back
    // and continue
    ungetc(next, input);
}

我以为对于空行,fscanf(input, "n%c", &next)会将'n'读取到next中,但实际上会跳过第二行并读取R

如何检查下一行是否在C?

中的流中为空

如果可以安全地假设matrix_read_prp_2()函数在输入缓冲区中留下newline,则可以在循环中沿着这些行中修改I/O操作:

    // Read anything left over to end of line
    int c;
    while ((c = getc(input)) != EOF && c != 'n')
        ;
    // Break on EOF or second newline
    if (c == EOF || (c = getc(input)) == EOF || c == 'n')
        break;
    // if not new line, put the char back and continue
    ungetc(c, input);
}

未经测试的代码。

在什么情况下,我不清楚应该进行nasrat(mgr, op);功能调用;mgrop均未出现在循环中。

相关内容

  • 没有找到相关文章

最新更新