用c++写找零钱的代码
时间: 2023-05-19 16:03:26 浏览: 174
C语言代码-找零钱
5星 · 资源好评率100%
以下是一个用 C 语言编写的找零钱程序示例:
```c
#include <stdio.h>
int main() {
int total, paid, change;
printf("请输入总金额:");
scanf("%d", &total);
printf("请输入支付金额:");
scanf("%d", &paid);
change = paid - total;
printf("找零:%d\n", change);
return 0;
}
```
该程序会要求用户输入总金额和支付金额,然后计算出找零金额并输出。
阅读全文