年龄不对???

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

慕粉3681565

2016-07-18 11:00

#include

int main() {       int age = 15;       fioat height = 162;       fioat weight = 82.5;       char isfat = 'y';    printf("年龄:%d 岁\n", age);    printf("身高:%d CM\n", height);    printf("体重:%f KG\n", weight);    printf("是否属于肥胖儿童:%c\n", isfat);    return 0;     } 年龄不对??
写回答 关注

5回答

  • 未完的承诺0
    2016-07-18 11:33:23

    还有头文件错误;最好自己下一个c语言编译器

  • 未完的承诺0
    2016-07-18 11:32:11

    首先:float的拼写错误;其次:第二个分号要用英文半角格式;最后:输出身高时应使用%f


  • 慕娘8403483
    2016-07-18 11:27:23

    #include<stdio.h>//头文件不完整

    int main() 

    {       

        int age = 15;       

        int height = 162;//整型才对身高是没有小数点的,分号不对.       

        fioat weight = 82.5;       

        char isfat = 'y';    

        printf("年龄:%d 岁\n", age);    

        printf("身高:%d CM\n", height);    

        printf("体重:%f KG\n", weight);    

        printf("是否属于肥胖儿童:%c\n", isfat);    

        return 0;     

     }

    #include<stdio.h>//头文件不完整

    int main() 

    {       

        int age = 15;       

        int height = 162;//整型才对身高是没有小数点的,分号不对.       

        fioat weight = 82.5;       

        char isfat = 'y';    

        printf("年龄:%d 岁\n", age);    

        printf("身高:%d CM\n", height);    

        printf("体重:%f KG\n", weight);    

        printf("是否属于肥胖儿童:%c\n", isfat);    

        return 0;     

     }#include<stdio.h>//头文件不完整

    int main() 

    {       

        int age = 15;       

        int height = 162;//整型才对身高是没有小数点的,分号不对.       

        fioat weight = 82.5;       

        char isfat = 'y';    

        printf("年龄:%d 岁\n", age);    

        printf("身高:%d CM\n", height);    

        printf("体重:%f KG\n", weight);    

        printf("是否属于肥胖儿童:%c\n", isfat);    

        return 0;     

     }#include<stdio.h>//头文件不完整

    int main() 

    {       

        int age = 15;       

        int height = 162;//整型才对身高是没有小数点的,分号不对//      

        fioat weight = 82.5;       

        char isfat = 'y';    

        printf("年龄:%d 岁\n", age);    

        printf("身高:%d CM\n", height);    

        printf("体重:%f KG\n", weight);    

        printf("是否属于肥胖儿童:%c\n", isfat);    

        return 0;     

     }


  • 慕粉18792368985
    2016-07-18 11:24:44

    #include<stdio.h>
    int main()
    {      
     int age = 15;      
     int height = 162;      
     float weight = 82.5;      
     char isfat = 'y';   
     printf("年龄:%d 岁\n", age);   
     printf("身高:%d CM\n", height);   
     printf("体重:%f KG\n", weight);   
     printf("是否属于肥胖儿童:%c\n", isfat);   
     return 0;    
    }

    是float不是fioat

  • 小半边呆
    2016-07-18 11:23:08


    #include<stdio.h>//头文件不完整
    int main() 
    {       
        int age = 15;       
        int height = 162;//整型才对身高是没有小数点的,分号不对.       
        fioat weight = 82.5;       
        char isfat = 'y';    
        printf("年龄:%d 岁\n", age);    
        printf("身高:%d CM\n", height);    
        printf("体重:%f KG\n", weight);    
        printf("是否属于肥胖儿童:%c\n", isfat);    
        return 0;     
     }


C语言入门

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

926021 学习 · 20793 问题

查看课程

相似问题