体重怎么是0?

来源:2-4 基本数据类型

jagdam

2015-02-24 17:02

 

#include <stdio.h>
int main()
{
    int age = 15;
    int height = 162;
    int weight = 82.5;
    int isfat = 'y';
    printf("年龄:%d 岁\n", age);
    printf("身高:%d CM\n", height);
    printf("体重:%f KG\n", weight);
    printf("是否属于肥胖儿童:%c\n", isfat);
    /*%d,%f,%c此类符号在后面会有讲解*/
    return 0;
}

写回答 关注

1回答

  • vLiang
    2015-02-24 17:15:42
    已采纳


    int weight = 82.5;

    更改为

    float weight = 82.5;

    这样就正确了,在线代码查看请看连接http://codepad.org/hYb0CS1f

    jagdam

    非常感谢!

    2015-02-24 17:18:40

    共 2 条回复 >

C语言入门

C语言入门视频教程,带你进入编程世界的必修课-C语言

926024 学习 · 20793 问题

查看课程

相似问题