关于S1E13中while语句的问题
我输入132,预想的是132,得到的结果是100;输入23,预想的是23,#include <stdio.h>int main()
{
printf("请输入待转换的字符串:");
char ch;
int ch2;
long double ch1;
long long int num = 0;
long long int temp = 1;
ch = getchar();
if (ch >= '0' && ch <= '9')
{
do
{
ch2 = (int)ch - '0';
ch1 = (float)ch2/ temp;
num = num + ch1;
ch = getchar();
temp = temp * 10;
} while (ch >= '0' && ch <= '9');
}
num = num * temp * 0.1;
printf("结果是:%lld", num);
return 0;
}得到的结果是20。到底是哪里出了问题,还请大佬们看看 说句题外话,13-23行的嵌套可以改成while(){
}吧{:10_256:} 本帖最后由 额外减小 于 2022-8-13 02:09 编辑
我知道了
你的代码基本没有问题,但请看第10行,你把num变量设置为int类型,在17-19行中用一个浮点数去加整型,那当然要取整再加了~
比如输入“123”,num的操作过程为:num+=1;
num+=0.2;
num+=0.03;
那么显然,int num加后结果为1。再乘以100后,输出100.
因此只需将第10行的int改为double即可{:10_254:}
#include <stdio.h>
int main()
{
printf("请输入待转换的字符串:");
char ch;
int ch2;
double ch1;
double num = 0;
long long int temp = 1;
ch = getchar();
if (ch >= '0' && ch <= '9')
{
do
{
ch2 = (int)ch - '0';
ch1 = (float)ch2/ temp;
num = num + ch1;
ch = getchar();
temp = temp * 10;
} while (ch >= '0' && ch <= '9');
}
num = num * temp * 0.1;
printf("结果是:%.0lf", num);
return 0;
} 本帖最后由 jackz007 于 2022-8-13 11:47 编辑
字符串转数字没有那么麻烦。
#include <stdio.h>
int main(void)
{
char c ;
int n ;
printf("请输入待转换的字符串 : ") ;
for(n = 0 ; (c = getchar()) && c >= '0' && c <= '9' ; n = n * 10 + c - '0') ;
printf("n = %d\n" , n) ;
}
编译、运行实况:
D:\\C>g++ -o x x.c
D:\\C>x
请输入待转换的字符串 : 123
n = 123
D:\\C>c
请输入待转换的字符串 : 23
n = 23
D:\\C>
页:
[1]