为什么字符串的输入不起作用?

时间:2009-12-24 04:34:49

标签: c windows linux input

#include <stdio.h>
int main()
{
        char temp[1024];
        if(getchar() != 'y')
        {
                printf("no options\n");
                return 1;
        }
        scanf(temp, "%s");
        printf("%s", temp);
}

我得到如下代码片段。我只想要两次来自用户的输入。但第一个输入有效,但第二个直接跳过,printf("%s", temp);打印出意外字符。我该如何解决问题.. 感谢名单

3 个答案:

答案 0 :(得分:6)

scanf的第一个参数是格式,第二个是缓冲区。你倒退了。试试scanf( "%s", temp );

答案 1 :(得分:2)

其他人已经给你了实际的答案,你应该接受其中的一个,但如果你喜欢这个圣人的建议,请随时向我投票: - )

如果您正在寻找强大的应用程序,则永远不应考虑使用gets。那是因为没有办法防止缓冲区溢出,这可能导致程序不安全。

我更喜欢以下程序中的getLine()这样的小功能。它使用fgets 可以保护免受过流,并且是一个强大的解决方案。

#include <stdio.h>
#include <string.h>

#define OK       0
#define NO_INPUT 1
#define TOO_LONG 2
static int getLine (char *prmpt, char *buff, size_t sz) {
    int ch, extra;

    // Get line with buffer overrun protection.
    if (prmpt != NULL) {
        printf ("%s", prmpt);
        fflush (stdout);
    }
    if (fgets (buff, sz, stdin) == NULL)
        return NO_INPUT;

    // If it was too long, there'll be no newline. In that case, we flush
    // to end of line so that excess doesn't affect the next call.
    if (buff[strlen(buff)-1] != '\n') {
        extra = 0;
        while (((ch = getchar()) != '\n') && (ch != EOF))
            extra = 1;
        return (extra == 1) ? TOO_LONG : OK;
    }

    // Otherwise remove newline and give string back to caller.
    buff[strlen(buff)-1] = '\0';
    return OK;
}

// Test program for getLine().

int main (void) {
    int rc;
    char buff[10];

    rc = getLine ("Enter string> ", buff, sizeof(buff));
    if (rc == NO_INPUT) {
        printf ("No input\n");
        return 1;
    }

    if (rc == TOO_LONG) {
        printf ("Input too long\n");
        return 1;
    }

    printf ("OK [%s]\n", buff);

    return 0;
}

示例以'hello', CTRL D 运行,并且字符串太大了:

pax> ./qq
Enter string> hello
OK [hello]

pax> ./qq
Enter string>
No input

pax> ./qq
Enter string> dfgdfgjdjgdfhggh
Input too long

pax> _

答案 2 :(得分:1)

您需要将参数切换为scanf

#include <cstdio>

using namespace std;

int main()
{
    char buf[100];
    while (true)
    {
        if (scanf("%s",buf) == EOF)
        {
            printf("fail");
            return 1;
        }
    }
}