// 初始化int price = 0;int bill = 0;// 读取金额和票面printf("请输入金额:");scanf("%d", &price);printf("请输入票面:");scanf("%d", &bill);// 计算找零if (bill >= price) { printf("应找您:%d\n", bill - price);} else { printf("您的钱不够\n");}return 0;
本文共 221 字,大约阅读时间需要 1 分钟。
// 初始化int price = 0;int bill = 0;// 读取金额和票面printf("请输入金额:");scanf("%d", &price);printf("请输入票面:");scanf("%d", &bill);// 计算找零if (bill >= price) { printf("应找您:%d\n", bill - price);} else { printf("您的钱不够\n");}return 0;
转载地址:http://wyzeo.baihongyu.com/