Saturday 12 August 2017

In ocean navigation, locations are measured in degrees and minutes of latitude and longitude. Thus if you’re lying off the mouth of Papeete Harbor in Tahiti, your location is 149 degrees 34.8 minutes west longitude, and 17 degrees 31.5 minutes south latitude. This is written as 149°34.8’ W, 17°31.5’ S. There are 60 minutes in a degree. (An older system also divided a minute into 60 seconds, but the modern approach is to use decimal minutes instead.) Longitude is measured from 0 to 180 degrees, east or west from Greenwich, England, to the international dateline in the Pacific. Latitude is measured from 0 to 90 degrees, north or south from the equator to the poles.



In ocean navigation, locations are measured in degrees and minutes of latitude and longitude. Thus if you’re lying off the mouth of Papeete Harbor in Tahiti, your location is 149 degrees 34.8 minutes west longitude, and 17 degrees 31.5 minutes south latitude. This is written as 149°34.8’ W, 17°31.5’ S. There are 60 minutes in a degree. (An older system also divided a minute into 60 seconds, but the modern approach is to use decimal minutes instead.) Longitude is measured from 0 to 180 degrees, east or west from Greenwich, England, to the international dateline in the Pacific. Latitude is measured from 0 to 90 degrees, north or south from the equator to the poles.
Create a class angle that includes three member variables: an int for degrees, a float for minutes, and a char for the direction letter (N, S, E, or W). This class can hold either a latitude variable or a longitude variable. Write one member function to obtain an angle value (in degrees and minutes) and a direction from the user, and a second to display the angle value in 179°59.9’ E format. Also write a three-argument constructor.
Write a main() program that displays an angle initialized with the constructor, and then, within a loop, allows the user to input any angle value, and then displays the value. You can use the hex character constant ‘\xF8’, which usually prints a degree (°) symbol.
SOLUTION:
#include "stdafx.h"
#include "iostream"
using namespace std;
/////////////////////////////////////////////////////////////////////////////////////////
class angle
{
            private:
                        int degrees;     float mints;      char direc;
            public:
                        angle( int deg, float m, char dir ): degrees(deg), mints(m), direc(dir)   {/*Empty Body*/}                                         void get_angle( )
                        {           cout << "Enter Degrees, Minutes & Dirrection (i.e. E, W, S, N) Respectively: ";
                                                cin >> degrees >> mints >> direc;
                        }
                        void show_angle( ) const
                        {           cout << degrees << "\xF8" << mints << "' " << direc << endl;           }
};
/////////////////////////////////////////////////////////////////////////////////////////
void main( )
{
            angle angle1(50,55.2,'E');
            cout << "Default Value of Angle is: ";             angle1.show_angle( );
            angle1.get_angle( );
            cout << "Your Provided Value of Angle is: ";  angle1.show_angle( );
            system("pause");
}
OUTPUT:

0 comments: