Write a c++ program that displays the result of expression
Write a program that displays the result of
copy
Keep Learning
expression
#Beginner
In gcc c++ compiler using namespace std;
#include<iostream>
using namespace std;
int main()
{
cout<<(1.2*0.1+3.3*0.3)/(0.09+0.001);
return 0;
}
Output
12.1978
[Program finished]
Keep Learning
Comments
Post a Comment
Any doubt about programming or questions