Horje
C++ Third angle of a Triangle Code Example
C++ Third angle of a Triangle
	int x, y, z;
    
    cout << "Enter the first angle of the triangle: ";
    cin >> x;
    cout << "Enter the second angle of the triangle: ";
    cin >> y;

    z = 180 - (x + y);

    cout << "The third angle is: " << z << endl;




Cpp

Related
how to fix class friendship errors in c++ Code Example how to fix class friendship errors in c++ Code Example
what are various sections of process Code Example what are various sections of process Code Example
how to create a copy constructor for generic array class in c++ Code Example how to create a copy constructor for generic array class in c++ Code Example
controlling in windows Code Example controlling in windows Code Example
how to free the vector c++ Code Example how to free the vector c++ Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10