参考代码:
#include<bits/stdc++.h> #define hh ios::sync_with_stdio(false),cin.tie(0),cout.tie(0); using namespace std; const int maxn=1005; int n,momey; int main() { hh; while(cin>>n&&n!=0) { int ans=0; for(int i=0; i<n; i++) { cin>>momey; if(momey>=100) { ans+=momey/100; momey%=100; } if(momey>=50) { ans+=momey/50; momey%=50; } if(momey>=10) { ans+=momey/10; momey%=10; } if(momey>=5) { ans+=momey/5; momey%=5; } if(momey>=2) { ans+=momey/2; momey%=2; } if(momey>=1) { ans+=momey; } } cout<<ans<<endl; } return 0; }
0.0分
0 人评分