1 条题解

  • 0
    @ 2025-11-29 12:35:42

    C :

    #include "stdio.h"
    int main() {
     
        double xiaoMingHeight = (175 + 162) * 0.54;
        double xiaoHongHeight = (169 * 0.923 + 153) / 2;
        printf("Height of xiao ming:%d\n", (int)xiaoMingHeight);
        printf("Height of xiao hong:%d\n", (int)xiaoHongHeight);
     
        return 0;
    }
    
    • 1

    信息

    ID
    72
    时间
    1000ms
    内存
    128MiB
    难度
    (无)
    标签
    递交数
    0
    已通过
    0
    上传者