CPP_Basics_Syntax/第一讲 变量、输入输出、表达式与顺序语句/t658_2.cpp

41 lines
1.1 KiB
C++
Raw Normal View History

2023-08-02 15:42:00 +08:00
// 读取一个带有两个小数位的浮点数,这代表货币价值。
// 在此之后,将该值分解为多种钞票与硬币的和,每种面值的钞票和硬币使用数量不限,要求使用的钞票和硬币的总数量尽可能少。
// 钞票的面值是 100,
// 50, 20, 10, 5, 2
// 。
// 硬币的面值是 1,
// 0.50, 0.25, 0.10, 0.05 和 0.01
// 。
// 经过实验证明:在本题中,优先使用面额大的钞票和硬币可以保证所用的钞票和硬币总数量最少。
#include <iostream>
#include <cstdio>
using namespace std;
int main()
{
double n;
cin >> n;
int m = (int)(n * 100);
int a[12] = {10000, 5000, 2000, 1000, 500, 200, 100, 50, 25, 10, 5, 1};
printf("NOTAS:\n");
for (int i = 0; i < 12; i++)
{
if (i < 6)
{
printf("%d nota(s) de R$ %.2f\n", m / a[i], (float)a[i] / 100);
m %= a[i];
}
if (i == 6)
printf("MOEDAS:\n");
if (i >= 6)
{
printf("%d moeda(s) de R$ %.2f\n", m / a[i], (float)a[i] / 100);
m %= a[i];
}
}
return 0;
}