#include #include #include void main() { double min_Value, max_Value; const double degtoRad = M_PI/180; double diff; int num_rows = 0; cout<<"\n\n\t This program will generate tables of tangents."; cout<<"\n\t (Enter a number >= 90 or < 0, or numbers in the wrong order, to terminate.)\n\n"; for (int i = 1;i<=10;i++) { cout<<"\t ***"; } cout<<"\n\n\t Minimum and maximum values for left column of table : "; cin>>min_Value>>max_Value; cout<=0 && max_Value>=0 && min_Value<90 && max_Value<90) { min_Value = floor(min_Value*10+0.5)/10.0; max_Value = floor(max_Value*10+0.5)/10.0; cout<<"\n\n\t\t\t\t Partial Table of Tangents"; cout<<"\n\t\t "; for (int i = 0;i<=9;i++) { cout<>min_Value>>max_Value; // num_rows = 0; } }