帮助阅读 C 语言中的基本用户输入

发布于 12-06 02:57 字数 470 浏览 0 评论 0原文

我目前刚刚学习 C,对于一个项目,我需要读取用户的整数输入。目前我使用的代码如下所示:

#include <stdio.h>
#include <stdlib.h>

int main(int argc, char *argv[])
{

    int a, b;

    printf("Please enter your first number");
    while((a = getchar()) != '\n') {
    }

    printf("test");

    return 0;
}

我不确定如何使用 getchar 获取数字,然后将其存储在我可以使用的变量中。 另外,我在 while 语句中使用 = '\n' ,因为我不太明白 EOF 是如何工作的(如 K&R 书中那样),因为每当我使用 EOF 时,我就会进入这个循环,无法退出。

感谢任何人可以提供的任何建议。

I am currently just learning C and for a project I need to read in integer inputs from the user. Currently I am using code that looks like this:

#include <stdio.h>
#include <stdlib.h>

int main(int argc, char *argv[])
{

    int a, b;

    printf("Please enter your first number");
    while((a = getchar()) != '\n') {
    }

    printf("test");

    return 0;
}

Im not sure how to get the number with getchar and then store it in a variable i can use.
Also I'm using = '\n' in the while statement because I don't really understand how EOF works (as in the K&R book) because whenever i use EOF i go into this loop i cant get out of.

Thanks for any advice anyone can offer.

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

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

发布评论

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

评论(2

猫腻2024-12-13 02:57:54

可以使用scanf。

看看这个例子:

printf("Please enter your first number ");
int number=0;
scanf ("%d",&number);

You can use scanf.

Have a look at this example:

printf("Please enter your first number ");
int number=0;
scanf ("%d",&number);
永不分离2024-12-13 02:57:54

我上面的 scanf 答案是正确的,但如果您还没有阅读有关地址或格式字符串的内容,则可能很难理解。

您可以通过从中减去“0”将字符转换为其等效整数:

char c = getchar();
int n = c - '0';

The scanf answer above mine is correct, but if you haven't read about addresses or format strings, it may be difficult to grok.

You can convert your character to its integer equivalent by subtracting '0' from it:

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