fflush不起作用

时间:2013-05-25 18:36:48

标签: c flush

为什么fflush(..)c2c0不起作用? 如果我使用声明c0 = 0c2 = 0它可行,但fflush(stdin)不起作用,我试图放在不同的地方,但它不起作用,我在ubuntu 13.04中使用代码块;

int main(void)
{
    int cod ,passou = 0, c0, c1, c2, c3, ct;
    float p1, p2, p3;
    char o;

    do {
    puts  ("Informe codigo: ");
    scanf ("%i", &cod);
    fflush (stdin);
        switch (cod)
        {
            case 0:
                c0 = c0 + 1;
                break;

            case 1:
                c1 = c1 + 1;
                ct = ct + 1;
                break;

            case 2:
                c2 = c2 + 1;
                ct = ct + 1;
                break;

            case 3:
                c3 = c3 + 1;
                ct = ct + 1;
                break;

            default:
                puts ("Valor invalido");

        }
        getchar();
        puts ("Deseja informar mais um voto?");
        fflush (stdin);
        scanf("%c",&o);
        if (o == 'S' || o == 's' ) {
        passou = 0;
        } else if (o == 'N' || o == 'n' ) {
        passou = 1;
        } else {
        puts ("Opcao invalida");
        }
        } while ( passou != 1 );


        p1=(c1/ct)*100;
        p2=(c2/ct)*100;
        p3=(c3/ct)*100;
        if (c1 > c2 && c1 > c3 && c1 > c0 ) {
        puts ("Candidato numero 1 eh o vencedor");
        } else if (c2 > c1 && c2 > c3 && c3 > c0) {
        puts ("Candidato numero 2 eh o vencedor");
        } else if (c3 > c1 && c3 > c2 && c3 > c0) {
        puts ("Candidato numero 3 eh o vencedor");
        } else {
        puts ("Numero de votos em branco eh maior do que todos os outros candidatos");
        }
        printf ("\nTotal de votos do candidato 1: %d", c1);
        printf ("\nTotal de votos do candidato 2: %d", c2);
        printf ("\nTotal de votos do candidato 3: %d", c3);
        printf ("\nTotal de votos em branco: %d", c0);
        printf ("\nPercentual de votos do candidato 1: %.2f", p1);
        printf ("\nPercentual de votos do candidato 2: %.2f", p2);
        printf ("\nPercentual de votos do candidato 3: %.2f", p3);

        return 1;
    }

2 个答案:

答案 0 :(得分:5)

在您的系统上调用fflush (stdin);的ubuntu 13.04(Unix或Linux)是未定义的行为!

  

int fflush(FILE *ostream);

     

ostream指向输出流或更新流   最近的操作没有输入,fflush功能导致任何   要传递到主机环境的该流的未写入数据   写入文件;否则,行为未定义

要学习正确刷新输入缓冲区的技巧,您可以使用以下一些实际读取的代码片段并从输入缓冲区中丢弃不需要的字符。在读取实际数据之前,您可以将其用作fflush。 read this FAQ entry.

C

 while ((ch = getchar()) != '\n' && ch != EOF);  

C ++

 while ((ch = cin.get()) != '\n' && ch != EOF);

但是,如果在输入流中没有数据时调用它们,程序将一直等到有效,这会给你带来不良后果。

阅读:@ Keith Thompson的回答:"Alternative to C library-function fflush(stdin)"

修改
有些平台fflush(stdin)已完全定义(作为该平台上的非标准扩展)。主要的例子是一个众所周知的系统系统,统称为Windows。微软的规范:

  

Flushes a stream

     

int fflush(FILE *stream )函数刷新流。如果文件关联   stream打开输出,fflush向该文件写入内容   与流关联的缓冲区。 如果流已打开   inputfflush清除缓冲区的内容。 fflush否定了   任何先前调用ungetc对流的影响。另外,fflush(NULL)   刷新为输出打开的所有流。流后仍保持打开状态   电话。 fflush对无缓冲的流没有影响。

答案 1 :(得分:2)

fflush(stdin)具有未定义的行为。今后使用此方法来处理stdin缓冲区中使用scanf()时保留的换行符,尤其是在需要读取字符的情况下保留在缓冲区中的换行符将自动作为字符:

 while((c = getchar()) != '\n' && c != EOF);

以下是cplusplusreference关于fflush()所说的内容(您也可以从其他来源验证相同内容,因为此处有太多退伍军人对cplusplusreference表示不满,尽管他们没有谴责它一起)

......In some implementations, flushing a stream open for reading causes its input buffer to be cleared (but this is not portable expected behavior).....

http://www.cplusplus.com/reference/cstdio/fflush/