Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C++ Exercises: Compute the specified expressions and print the output

C++ Basic: Exercise-35 with Solution

Write a program in C++ to compute the specified expressions and print the output.

Sample Solution:

C++ Code:

#include <iostream>
using namespace std;
 
int main()
{
    cout << "\n\n Compute the specified expressions and print the output:\n";
	cout << "------------------------------------------------------------\n";
    cout << " Result of the expression "<<"(25.5 * 3.5 - 3.5 * 3.5) / (40.5 - 4.5) is : "<< (25.5 * 3.5 - 3.5 * 3.5) / (40.5 - 4.5) <<"\n" ; 
}

Sample Output:

 Compute the specified expressions and print the output:              
------------------------------------------------------------          
 Result of the expression (25.5 * 3.5 - 3.5 * 3.5) / (40.5 - 4.5) is : 2.13889 

Flowchart:

Flowchart: Compute the specified expressions and print the output

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a C++ program to display the current date and time.
Next: Write a program in C++ to test the Type Casting.

What is the difficulty level of this exercise?