下边这段代码哪错了?

#include <stdio.h>
int main()
{
        age = 15;
        height = 162;
        weight = 82.5;
        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;   
}

茯苓加糖
浏览 1103回答 3
3回答

习惯受伤

你的变量没有声明,缺少了变量类型,应该为:int age = 15; int height = 162; float weight = 82.5; char isfat = 'y';

我是大树

哈哈 楼主是从js还是python过来的?
打开App,查看更多内容
随时随地看视频慕课网APP