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:
- Include the iomanip and iostream libraries.
- Declare four variables to store the input numbers.
- Prompt the user to enter the four numbers.
- Use cin to get the input from the user and store the values in the variables.
- Calculate the sum, product, difference, and quotient using the four variables.
- 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;
}