简体   繁体   English

C 双型显示点后零

[英]C Double type displays zeros after point

I have this weird problem.我有这个奇怪的问题。 When I write a double type number, it gets stored in the当我写一个 double 类型的数字时,它被存储在

double data;

variable.多变的。 Then when I compile and run the code the number gets printed out as for example 3697.0000 when I have written 3697.47595 .然后,当我编译并运行代码时,当我编写3697.47595 3697.0000

Here is the code:这是代码:

#include <stdio.h>

const int n = 12;
int stack[n], top = -1;

double Read()
{
    int x = 0;
    if(top < 0)
        printf("Empty stack!");
    else
    {
        x = stack[top];
        top--;
    }
    return x;
}

void Write(int x)
{
    if(top == n-1)
        printf("The stack is full");
    else
    {
        top++;
        stack[top] = x;
    }
}

int main()
{
    double data;
    printf("Enter a double (0 for quit): ");
    scanf("%lf", &data);
    while(data > 0)
    {
        Write(data);
        printf("Enter a double (0 for quit): ");
        scanf("%lf", &data);
    }
    printf("---------------------------");
    printf("\nThe stack contains:\n");
    while(top >= 0 )
        printf("%lf ", Read());

    return 0;
}

The value is truncated to int because the elements of the array stack , the argument of Write , and the variable x to temporarily store the value in Read are int .该值被截断为int ,因为数组stack的元素、 Write的参数以及用于将值临时存储在Read中的变量x都是int Use double for them to deal with double value.为他们使用double来处理double值。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM