File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -55,6 +55,12 @@ void tan_t_test(){
55
55
void asin_t_test (){
56
56
cout << funtras::asin_t (0.5 ) << endl;
57
57
cout << funtras::asin_t (-0.3 ) << endl;
58
+ cout << " --- " << 2 *funtras::asin_t (0.9 ) << endl;
59
+ }
60
+
61
+ void acos_t_test (){
62
+ cout << funtras::acos_t (0.5 ) << endl;
63
+ cout << funtras::acos_t (-0.3 ) << endl;
58
64
}
59
65
60
66
void atan_t_test (){
@@ -76,6 +82,11 @@ void log_t_test(){
76
82
cout << funtras::log_t (50 ,3 ) << endl;
77
83
cout << funtras::log_t (27 ,7 ) << endl;
78
84
}
85
+
86
+ void pi_test (){
87
+ cout << " PI = " << funtras::pi_t () << endl;
88
+ }
89
+
79
90
int main (int argc, char const *argv[])
80
91
{
81
92
power_test ();
@@ -93,5 +104,7 @@ int main(int argc, char const *argv[])
93
104
sqrt_t_test ();
94
105
root_t_test ();
95
106
log_t_test ();
107
+ pi_test ();
108
+ acos_t_test ();
96
109
return 0 ;
97
110
}
You can’t perform that action at this time.
0 commit comments