问答详情
源自:2-3 变量及赋值

请检查输出是否包含:我今年18岁

请检查输出是否包含:我今年18岁

提问者:sirwang1031 2016-03-15 11:11

个回答

  • 越飞越高
    2016-11-07 22:56:35

    http://img.mukewang.com/582095cc00017e0c07730595.jpg

    重新提交就能通过了

  • qq_沐风少年游_0
    2016-03-15 11:32:50

    #include <stdio.h>
    int main()
    {
        int age = 18;
     float height = 1.85;
     char unit = 'm';
     printf("小明今年%d岁\n", age);
     printf("小明身高%f%c\n", height, unit);
     printf("%s小明现在在慕课网上学习IT技术");
     return 0;
    }

  • qq_沐风少年游_0
    2016-03-15 11:31:19

    #include <stdio.h>

    int main()

    {

        int age = 15;

        short height = 162;

        double weight = 82.5;

        char 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;   

    }