-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path04-constants.c
50 lines (37 loc) · 1.58 KB
/
04-constants.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
#include <stdio.h>
#include <math.h>
#define SALES_TAX_RATE 0.09
#define SERVICE_FEE 15.99
/*
* Program 04 : Constants
* In this program we show examples of how to define and use constants.
*/
int main(){
/* Floating Point Examples */
float price = 1.999e1; /* 19.99 in exponential notation 1.999 X 10^1 */
printf("price: %f\n", price);
float smallvalue = 1.3e-10; /* .00000000013 in exponential notation 1.3 X 10^-10 */
printf("smallvalue: %.11f\n", smallvalue);
/*
* Calculate the final price for a hotel room with taxes and fees. In the code below,
* we calculate the final price of a hotel by adding tax and a service fee.
*/
float basecost = 149.00;
float total = basecost + (basecost * 0.09) + 15.99;
/* The format string '%.2f' prints a number with 2 digits after the decimal */
printf("Total Hotel Cost = $%.2f\n", total);
/*
* The code above works, but it uses a bad style. Software
* designers prefer not to have magical numbers appear in the code.
* In the case above, 0.09 and 15.99 are what we call magic numbers. It's a
* important number that appears out of nowhere in the code, and we don't have
* an explaination of why it's used. By defining and using a constant instead,
* we can make the code easier to read for others and oursleves when we go back to it
* years later.
*
* Look how using constants can clarify the code.
*/
total = basecost + (basecost * SALES_TAX_RATE) + SERVICE_FEE;
printf("Total Hotel Cost = $%.2f\n", total);
return 0;
}