gpt4 book ai didi

c - 如何获取getchar()中的最新值?

转载 作者:太空宇宙 更新时间:2023-11-04 03:39:33 26 4
gpt4 key购买 nike

我正在使用 getchar() 函数输入,当我在输入后按回车键时,我得到循环内 c 的值与我输入的一样好,但是当我输入非数字时循环中断……我输入的最新值是 换行,ASCII 值为 10。

我怎么可能保留数字值。我想要的只是 c 在循环中断后获得数字值

#include<stdio.h>
#include<ctype.h>
main()
{
int c =0;
while(isdigit(c=getchar()))
{
printf("c is : %c\n",c);
}
printf("latest value of c(ASCII) is : %d\n",c);
}

最佳答案

这样做的一种方法是添加一个滞后变量并在每次迭代时从 c 写入此变量:

#include<stdio.h>
#include<ctype.h>
int main(int argc, char *argv[])
{
int c = '0', lastchar = 0;
while(isdigit(c))
{
if(!lastchar)
{
printf("c is : %c\n",c);
}
lastchar = c;
c = getchar();
}
printf("latest value of c(ASCII) is : %d\n",lastchar);
return 0;
}

关于c - 如何获取getchar()中的最新值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29713261/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com