-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
92 lines (65 loc) · 1.86 KB
/
main.cpp
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/**
* @author:
* @project:
* @purpose:
* @date:
*/
#include <iostream>
//------------------------------------------------------------------------------
//Files we are testing:
#include "includes/stock/stock.h"
//------------------------------------------------------------------------------
using namespace std;
void basic_test(bool debug=false);
void testB(bool debug=false);
int main()
{
// BASIC TEST
cout << "\n\n---------running basic_test---------\n\n";
basic_test();
cout << "\n\n------------- D O N E --------------\n\n";
// TEST B
cout << "\n\n-----------running testB------------\n\n";
testB();
cout << "\n\n------------- D O N E --------------\n\n";
return 0;
}
void basic_test(bool debug)
{
double single_price, hold_price;
int whole, numerator, denominator, number_of_share;
// Test 1
whole=2, numerator=1, denominator=4, number_of_share=1000;
single_price = frac_2_double(whole, numerator, denominator);
hold_price = holding_price(single_price, number_of_share);
cout << "single price: " << single_price << endl;
cout << "hold price: " << hold_price << endl;
// Test 2
whole=4, numerator=1, denominator=8, number_of_share=100;
single_price = frac_2_double(whole, numerator, denominator);
hold_price = holding_price(single_price, number_of_share);
cout << "single price: " << single_price << endl;
cout << "hold price: " << hold_price << endl;
}
void testB(bool debug)
{
// TODO: add more test here
}
/*
---------running basic_test---------
single price: 2.25
hold price: 2250
single price: 4.125
hold price: 412.5
------------- D O N E --------------
-----------running testB------------
stock value: 4 6/7
number of stock: 123
holdings: 597.43
again? y
stock value: 3 4/9
number of stock: 321
holdings: 1105.67
again? n
------------- D O N E --------------
*/