Strings, gets and do while

前端 未结 3 1157
遇见更好的自我
遇见更好的自我 2021-01-26 12:43

I\'m doing an exercise in C but I have a problem when at the and I want to repeat the cicle (do while), infact if I type 1 the programme starts again by the top, but it doesn\'t

3条回答
  •  时光说笑
    2021-01-26 12:50

    Your first and most obvious problem is with the left over newline. When you use scanf() here:

        printf("\nDo you want write another text? (1=yes) -> ");
        scanf("%d", &j);
    }
    

    and you use the %d format specificer, the function is looking for a number, when you enter a number really you're entering a number and a newline character

    > 1   // which means on stdin you're getting   '1''\n'
    

    scanf() only picks up the 1 and leaves the newline which your gets() function then picks up, so it looks like it's skipping the input. All you need to do is consume that newline character, one quick fix would be to consume it with getchar():

        printf("\nDo you want write another text? (1=yes) -> ");
        scanf("%d", &j);
        getchar();
    }
    

    Now your program works as you'd expect.


    Other issues of note:

    1. Your main should really be returning an int type, even if it's just a return 0
    2. You shouldn't be using gets(), even then man page for gets() says Never use gets(). That's usually a good indication not to. ;) So replace that line with fgets(testo, sizeof(testo), stdin);
    3. You missed a performance specificer here: printf("\nThe text is composed by % characters\n", cch); so you're getting garbage output, that should have been %d

提交回复
热议问题