Create a C++ program to solve the following expression: a+b*c+d-b
plz answer only if u can. Irrelevant answers will be reported.
Answers
Answered by
1
Answer:
#include<iostream.h>
#include<conio.h>
#include<iomanip.h>
void main ()
{ clrscr();
float a,b,c,d,e;
cout<<"Insert the nunbers a,b,c and d :"<<endl;
cin>>a>>b>>c>>d;
e=(a+b)(c+d-b)
cout<<"The required answer is"<<e;
getch();
}
Similar questions
English,
29 days ago
Environmental Sciences,
29 days ago
Social Sciences,
1 month ago
Math,
10 months ago
English,
10 months ago
Science,
10 months ago