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
#include <stdio.h>
#include <conio2.h>
void hitung(int amount, int *denom100, int *denom50, int *denom20, int *denom10)
{
int restofmoney;
*denom100 = amount / 100000;
restofmoney = amount - (*denom100 * 100000);
*denom50 = restofmoney / 50000;
restofmoney = restofmoney - (*denom50 * 50000);
*denom20 = restofmoney / 20000;
restofmoney = restofmoney - (*denom20...