Computer Science, asked by skis0975, 26 days ago

Write a Mathml program to display the following mathematical notation: P =2 ( L + B ) ​

Answers

Answered by satakshighosh777
1

Answer:

include

int p,l,b;

cout<<"enter length and breath";

p=2(l+b);

cout<<p;

getch();

}

Similar questions