110k views
0 votes
c ++ Write a program that asks the users to enter four numbers, obtains the four numbers from the user, and prints the sum, product, difference, and quotient of the four numbers.

User Atta
by
7.9k points

1 Answer

2 votes

Final answer:

To write a C++ program that obtains four numbers from the user and prints the sum, product, difference, and quotient of the four numbers, you can follow these steps.

Step-by-step explanation:

To write a C++ program that obtains four numbers from the user and prints the sum, product, difference, and quotient of the four numbers, you can follow these steps:

  1. Include the iomanip and iostream libraries.
  2. Declare four variables to store the input numbers.
  3. Prompt the user to enter the four numbers.
  4. Use cin to get the input from the user and store the values in the variables.
  5. Calculate the sum, product, difference, and quotient using the four variables.
  6. Print the results using cout.

Here's an example of the program:

#include <iostream>
#include <iomanip>

using namespace std;

int main() {
float num1, num2, num3, num4;

cout << "Enter four numbers: ";
cin >> num1 >> num2 >> num3 >> num4;

float sum = num1 + num2 + num3 + num4;
float product = num1 * num2 * num3 * num4;
float difference = num1 - num2 - num3 - num4;
float quotient = num1 / num2 / num3 / num4;

cout << fixed << setprecision(4);
cout << "Sum: " << sum << endl;
cout << "Product: " << product << endl;
cout << "Difference: " << difference << endl;
cout << "Quotient: " << quotient << endl;

return 0;
}
User The Hoff
by
7.3k points