题目描述:
在这个问题中,你需要读取一个整数值并将其分解为多张钞票的和,每种面值的钞票可以使用多张,并要求所用的钞票数量尽可能少。
请你输出读取值和钞票清单。
钞票的可能面值有 100,50,20,10,5,2,1。
经过实验证明:在本题中,优先使用面额大的钞票可以保证所用的钞票总数量最少。
输入格式
输入一个整数 N。
输出格式
参照输出样例,输出读取数值以及每种面值的钞票的需求数量。
数据范围
0<N<10000000
输入样例:
576
输出样例:
576
5 nota(s) de R$ 100,00
1 nota(s) de R$ 50,00
1 nota(s) de R$ 20,00
0 nota(s) de R$ 10,00
1 nota(s) de R$ 5,00
0 nota(s) de R$ 2,00
1 nota(s) de R$ 1,00
代码
#include<iostream>
using namespace std;
int main()
{ int N;
cin>>N;
cout<<N<<endl;
int arr[7]={100,50,20,10,5,2,1};
for(int i=0;i<7;i++)
{
cout<<N/arr[i]<<" nota(s) de R$ "<<arr[i]<<",00"<<endl;
N=N%arr[i];
}
return 0;
}
大家要是还有其他的写法可以写在评论区喔!
标签:00,20,int,de,c++,钞票,nota,653,acwing From: https://blog.csdn.net/weixin_73598089/article/details/139582668