0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 00:25:24 +00:00
OI-codes/AcWing/653/653.cpp

19 lines
529 B
C++

#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;
}