标签:mount return 输入 hang int can turn amount 计算
#include <stdio.h>
int main()
{
const int AMOUNT =100;
int price =0;
printf("请输入金额(元)");
scanf("%d",&price);
int change =AMOUNT-price;
printf("找您%d元\n",change);
return 0;
}
标签:mount return 输入 hang int can turn amount 计算
原文地址:https://www.cnblogs.com/ligouhai/p/9847727.html