问答详情
源自:2-4 基本数据类型

体重怎么是0?

 

#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;
}

提问者:jagdam 2015-02-24 17:02

个回答

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


    int weight = 82.5;

    更改为

    float weight = 82.5;

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