土命打车 发表于 2021-4-7 18:31:22

宏定义

int main()
{
        float price;
       
        price = 0.5 * (2 * FAN + KONG +YOU); // 1斤 == 0.5公斤
        printf("小明需要支付%.2f元\n", price);
       
    price = 0.5 * (3 * XI + 0.5 * YANG + 5 * HUANG);
    printf("小红需要支付%.2f元\n", price);
   
    price = 0.5 * (10 * HUANG + 20 * BAI);
    printf("小甲鱼需要支付%.2f元\n", price);
   
    return 0;
}
//啥意思c语言
页: [1]
查看完整版本: 宏定义