Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
463 views
in Technique[技术] by (71.8m points)

c - Undesired output with modulo operator and ' pow '

for the below shown code

#include<stdio.h>
#include<math.h>
int main()
{
    int a,i,n=0;
    int temp=0;
    scanf("%d",&a);
    //for number of digits
    while(temp>=0)
    {
        n++;
        temp = a / pow(10,n);
        if(temp==0)
            break;
    }
    printf("%d
",n);
    for (i=1;i<=n;i++)
    {
        temp = a % (int)pow(10,i);
        printf("%d
",temp);
    }
    return 0;
}

the output is (input is 123)

123
3
3
24
123

Image of the output given by gcc

so the question is why 24 is coming instead of 23 ?

please check the image because the output given by online compiler(ideone) is 23. Only the output by gcc has 24

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I see the following errors:

while(temp>=0)

but temp is not initialized.

temp = a / pow(10,n);

but temp is integer and the calculation is double. You loose precision, which is the probable cause of your wrong output.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...