0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-16 20:05:26 +00:00
Baoshuo Ren 2021-10-05 17:26:49 +08:00 committed by Baoshuo Ren
parent bf69b6fcb3
commit c02434fa38
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

18
AcWing/653/653.cpp Normal file
View File

@ -0,0 +1,18 @@
#include <bits/stdc++.h>
using namespace std;
int n;
int main() {
cin >> n;
cout << n << endl
<< n / 100 << " nota(s) de R$ 100,00" << endl
<< (n %= 100) / 50 << " nota(s) de R$ 50,00" << endl
<< (n %= 50) / 20 << " nota(s) de R$ 20,00" << endl
<< (n %= 20) / 10 << " nota(s) de R$ 10,00" << endl
<< (n %= 10) / 5 << " nota(s) de R$ 5,00" << endl
<< (n %= 5) / 2 << " nota(s) de R$ 2,00" << endl
<< n % 2 << " nota(s) de R$ 1,00" << endl;
return 0;
}