在 C 中读取标准输入

发布于 2024-11-07 02:40:31 字数 111 浏览 0 评论 0原文

当我尝试从 stdin 读取时遇到一些麻烦。我想要做的是从 stdin 读取未知行,直到引入字符 '.' 。你能帮我举一些例子吗?

I have some troubles when I am trying to read from stdin. What I want to do is to read unknown lines from stdin until character '.' is introduced. Could you help me with some examples?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

清醇 2024-11-14 02:40:31

不要读行...读字符。

int ch;
while (1) {
    ch = getchar();
    if ((ch == EOF) || (ch == '.')) break;
    /* deal with ch */
}
if (ch == '.') {
    /* '.' detected */
}

Don't read lines ... read characters.

int ch;
while (1) {
    ch = getchar();
    if ((ch == EOF) || (ch == '.')) break;
    /* deal with ch */
}
if (ch == '.') {
    /* '.' detected */
}
变身佩奇 2024-11-14 02:40:31

你可以使用这样的东西。有更有效的方法,但从这开始就很好了。

#define BUFFER_SIZE 1024

int main(int argc, char *argv[])
{
    // declare buffer
    char str[BUFFER_SIZE];

    // read till .
    int idx = 0;
    register int cr;
    do {
          if ((cr = getchar()) == '.' || cr == 0 || cr == EOF)
              break;

          str[idx] = cr;
    } while(++idx != BUFFER_SIZE);

    if (idx != BUFFER_SIZE)
    {
        str[idx] = 0; // 0 terminate string replacing . by end of string
        printf("%s", str); // print the string
    }
    else
    {
        printf("Buffer overflow");
    }

    exit(0);
}

You could use something like this. There are more efficient ways but this would be fine to make a start.

#define BUFFER_SIZE 1024

int main(int argc, char *argv[])
{
    // declare buffer
    char str[BUFFER_SIZE];

    // read till .
    int idx = 0;
    register int cr;
    do {
          if ((cr = getchar()) == '.' || cr == 0 || cr == EOF)
              break;

          str[idx] = cr;
    } while(++idx != BUFFER_SIZE);

    if (idx != BUFFER_SIZE)
    {
        str[idx] = 0; // 0 terminate string replacing . by end of string
        printf("%s", str); // print the string
    }
    else
    {
        printf("Buffer overflow");
    }

    exit(0);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文