Computer Science, asked by cyruscrazieee, 1 month ago

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 2PaVaN4
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