-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcash.c
77 lines (62 loc) · 1.52 KB
/
cash.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
65
66
67
68
69
70
71
72
73
74
75
76
77
#include <cs50.h>
#include <stdio.h>
int get_cents(void);
int calculate_quarters(int cents);
int calculate_dimes(int cents);
int calculate_nickels(int cents);
int calculate_pennies(int cents);
int main(void)
{
// Ask how many cents the customer is owed
int cents = get_cents();
// Calculate the number of quarters to give the customer
int quarters = calculate_quarters(cents);
cents = cents - quarters * 25;
// Calculate the number of dimes to give the customer
int dimes = calculate_dimes(cents);
cents = cents - dimes * 10;
// Calculate the number of nickels to give the customer
int nickels = calculate_nickels(cents);
cents = cents - nickels * 5;
// Calculate the number of pennies to give the customer
int pennies = calculate_pennies(cents);
cents = cents - pennies * 1;
// Sum coins
int coins = quarters + dimes + nickels + pennies;
// Print total number of coins to give the customer
printf("%i\n", coins);
}
int get_cents(void)
{
int n;
do
{
n = get_int("Change owed: ");
if (n < 0)
{
printf("Type a positive number!\n");
}
}
while (n < 0);
return n;
}
int calculate_quarters(int cents)
{
int quarters = cents / 25;
return quarters;
}
int calculate_dimes(int cents)
{
int dimes = cents / 10;
return dimes;
}
int calculate_nickels(int cents)
{
int nickels = cents / 5;
return nickels;
}
int calculate_pennies(int cents)
{
int pennies = cents;
return pennies;
}