Write a Mathml program to display the following mathematical notation: P =2 ( L + B )
Answers
Answered by
1
Answer:
include
int p,l,b;
cout<<"enter length and breath";
p=2(l+b);
cout<<p;
getch();
}
Similar questions