printf 在打印双精度数时打印零 [英] printf printing zero when printing a double

查看:132
本文介绍了printf 在打印双精度数时打印零的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一段 C 代码,用于计算周长.无论我在变量 Z 中输入什么,它总是打印 0.000000

I have a piece of code in C, which is supposed to compute the circumference. No matter what I put in for variable Z when asked for it, it always prints 0.000000

有什么想法吗?

#include <stdio.h>
int main()
{
    double pi = 3.1415926;
    double z = 0.0;
    printf("What is the radius of the circle? \n ");
    scanf("%1f", &z);
    double c =  2.0 * pi * z;
    printf("The circumference is %1f", c);
    return 0;
}

推荐答案

%1f 更改为 %lf.

像这样:

#include <stdio.h>
int main()
{
    double pi = 3.1415926;
    double z = 0.0;
    printf("What is the radius of the circle? \n ");
    scanf("%lf", &z);
    double c =  2.0 * pi * z;
    printf("The circumference is %lf", c);
    return 0;
}

这篇关于printf 在打印双精度数时打印零的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆