getchar() 在 while 循环中 问题

发布于 2024-11-02 03:42:31 字数 282 浏览 1 评论 0原文

我是一个为学校编写 C 程序的新手,其中输入被重定向到文件。我仅使用 getchar() 来检索信息。我正在使用 Windows Visual 2008,我无法弄清楚为什么我的代码不会退出循环。有人可以帮我吗?谢谢。

while (rec != 'EOF')
{
    while (rec != '\n')
    { 
        variable=getchar;
        printf ("this is variable %c");
    }
}

I am a newbee writing a C program for school where the input is redirected to a file. I am to use getchar() only to retrieve the information. I am using Windows Visual 2008 and I cannot figure out why my code will not exit the loop. Can anyone help me out? Thanks.

while (rec != 'EOF')
{
    while (rec != '\n')
    { 
        variable=getchar;
        printf ("this is variable %c");
    }
}

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

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

发布评论

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

评论(3

在巴黎塔顶看东京樱花 2024-11-09 03:42:31
while (rec != EOF)
{
     rec=getchar();
     if((rec != '\n') && (rec != EOF)){     
          printf ("this is variable %c\n",rec);
     }
}
while (rec != EOF)
{
     rec=getchar();
     if((rec != '\n') && (rec != EOF)){     
          printf ("this is variable %c\n",rec);
     }
}
稚气少女 2024-11-09 03:42:31
int c = 0;
while (c != EOF) {
    c = getchar();

    if (c == '\n')
        break;

    printf("c:%c\n", c);
}
int c = 0;
while (c != EOF) {
    c = getchar();

    if (c == '\n')
        break;

    printf("c:%c\n", c);
}
燕归巢 2024-11-09 03:42:31

答案取决于真正需要什么。如果您想打印除新行之外的每个字符,您需要类似:

int c = getchar(); // Note c is defined as an int otherwise the loop condition is broken
while (c != EOF)
{
    if (c != `\n`)
    {
        printf("c:%c\n", c);
    }
    c = getchar();
}

如果您只想要第一行上的字符:

int c = getchar();
while (c != EOF && c != `\n`)
{
    printf("c:%c\n", c);
    c = getchar();
}

The answer depends on what is really needed. If you want to print every character except the new lines, you want something like:

int c = getchar(); // Note c is defined as an int otherwise the loop condition is broken
while (c != EOF)
{
    if (c != `\n`)
    {
        printf("c:%c\n", c);
    }
    c = getchar();
}

If you just want the characters on the first line:

int c = getchar();
while (c != EOF && c != `\n`)
{
    printf("c:%c\n", c);
    c = getchar();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文