-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1018.c
64 lines (52 loc) · 1.2 KB
/
1018.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
//1018 - Cédulas
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
using namespace std;
int main()
{
int Valor, ValorIni, ncem = 0 , ncinq = 0, nvinte = 0, ndez = 0, ncinco = 0 , ndois= 0 , num = 0;
cin >> Valor;
ValorIni = Valor;
if (Valor >= 100)
{
ncem = Valor / 100;
Valor = Valor - (ncem * 100);
}
if (Valor >= 50)
{
ncinq = Valor / 50;
Valor = Valor - (ncinq * 50);
}
if (Valor >= 20){
nvinte = Valor / 20;
Valor = Valor - (nvinte * 20);}
if (Valor >= 10)
{
ndez = Valor / 10;
Valor = Valor - (ndez * 10);
}
if (Valor >= 5)
{
ncinco = Valor / 5;
Valor = Valor - (ncinco * 5);
}
if (Valor >= 2)
{
ndois = Valor / 2;
Valor = Valor - (ndois * 2);
}
else
num = Valor;
cout << ValorIni << endl;
cout << ncem << " nota(s) de R$ 100,00" << endl;
cout << ncinq << " nota(s) de R$ 50,00" << endl;
cout << nvinte << " nota(s) de R$ 20,00" << endl;
cout << ndez << " nota(s) de R$ 10,00" << endl;
cout << ncinco << " nota(s) de R$ 5,00" << endl;
cout << ndois << " nota(s) de R$ 2,00" << endl;
cout << num << " nota(s) de R$ 1,00" << endl;
return 0;
}