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 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
|
#include <iostream>
#include <cstdlib>
#define PI 3.1415926
using namespace std;
void displayMenu( float& angle )
{
system("cls");
cout << "*******Trigonometry Program**********" << endl;
cout << "\nPlease enter an angle value => ";
cin >> angle;
}
void DegOrRad ( char& select )
{
cout << "Is the angle in Degree or Radian?" << endl;
cout << " Type D if it is in Degree" << endl;
cout << " Type R if it is in Radian" << endl;
cout << "Your response => ";
cin >> select;
select = toupper ( select );
}
void ConvR( float& angle, float& Rad, float& Deg, float& term, float& sinX, float& cosX, float& x, float& tanX, int& i )
{
cout.precision(7);
cout.setf(ios::fixed);
cout << " " << angle << " Degree =";
cout.width(17);
Rad = angle * PI / 180;
term = Rad;
sinX = term;
for (i=3; i<=21; i+=2)
{
term = -term*Rad*Rad / (i*(i-1));
sinX = sinX + term;
}
term = 1, cosX = 1;
x = Rad;
for (i=1; i<=21; i++)
{
term = ((-term)*(x*x)) / ((2*i)*(2*i-1));
cosX = cosX + term;
}
tanX = sinX / cosX;
cout << Rad << " Radian";
cout << endl;
cout << "\n\n Results";
cout << "\n====================================";
cout << "\n x = " << Rad << " Radian";
cout << "\n sin(x) = " << sinX;
cout << "\n cos(x) = " << cosX;
cout << "\n tan(x) = " << tanX;
cout << "\n====================================";
cout << endl;
}
void AngleRadian( float& angle, float& Rad, float& Deg, float& term, float& sinX, float& cosX, float& x, float& tanX, int& i )
{
cout.precision(7);
cout.setf(ios::fixed);
term = angle;
sinX = term;
for (i=3; i<=21; i+=2)
{
term = -term*angle*angle / (i*(i-1));
sinX = sinX + term;
}
term = 1, cosX = 1;
x = angle;
for (i=1; i<=21; i++)
{
term = ((-term)*(x*x)) / ((2*i)*(2*i-1));
cosX = cosX + term;
}
tanX = sinX / cosX;
cout << "\n\n Results";
cout << "\n====================================";
cout << "\n x = " << angle << " Radian";
cout << "\n sin(x) = " << sinX;
cout << "\n cos(x) = " << cosX;
cout << "\n tan(x) = " << tanX;
cout << "\n====================================";
cout << endl;
}
void YesNo ( char& select2 )
{
cout<<"Do you want to continue?"<<endl;
cout<<" Type Y to continue"<<endl;
cout<<" Type any other key to stop"<<endl;
cout<<"Your response => ";
cin >> select2;
select2 = toupper ( select2 );
}
int main()
{
float angle = 35;
float Rad;
float Deg;
float term;
float sinX;
float cosX;
float tanX;
float x;
int i;
char select;
char select2;
char retry = 0;
bool done = false;
bool select_valid = false;
do
{
displayMenu ( angle );
do
{
DegOrRad ( select );
switch (select)
{
case 'D' : ConvR ( angle, Rad, Deg, term, sinX, cosX, tanX, x, i );
select_valid = true;
break;
case 'R' : AngleRadian ( angle, Rad, Deg, term, sinX, cosX, tanX, x, i );
select_valid = true;
break;
default : cout << "Invalid selection, try again!" << endl;
break;
}
}while ( !select_valid );
YesNo ( select2 );
} while ( select2 == 'Y' || select2 == 'y' );
cout << "Thank You, Goodbye";
return 0;
}
|