C++描述杭电OJ 2021.发工资 ||
Problem Description
财务处的小胡老师最近就在考虑一个问题:如果每个老师的工资额都知道,最少需要准备多少张人民币,才能在给每位老师发工资的时候都不用老师找零呢?
这里假设老师的工资都是正整数,单位元,人民币一共有100元、50元、10元、5元、2元和1元六种。
Input
输入数据包含多个测试实例,每个测试实例的第一行是一个整数n(n<100),表示老师的人数,然后是n个老师的工资。
n=0表示输入的结束,不做处理。
Output
对于每个测试实例输出一个整数x,表示至少需要准备的人民币张数。每个输出占一行。
Sample Input
3 1 2 3 0
Sample Output
4
代码实现
#include<bits/stdc++.h>
using namespace std;
int main()
{int m,n,t,count=0;while(cin>>n){if(n==0){break;}while(n--){cin>>m;if(m/100>0){t=m/100;count+=t;m=m%100;}if(m/50>0){t=m/50;count+=t;m=m%50;}if(m/10>0){t=m/10;count+=t;m=m%10;}if(m/5>0){t=m/5;count+=t;m=m%5;}if(m/2>0){t=m/2;count+=t;m=m%2;}if(m/1>0){t=m/1;count+=t;m=m%1;}}cout<<count<<endl;}return 0;
}