Write Visual Basic code to accept the Length and Breadth of a rectangle using text box . Calculate and display area using message box.[ Area=Length x Breadth]
Answers
Answered by
0
Answer:
area of the rectangle is l ×b perimeter of the rectangle is l + b ×2
Answered by
4
Answer:
#include <stdio.h>
int main()
{
int width=5;
int height=10;
int area=width*height;
printf("Area of the rectangle=%d",area);
}
PLZ MARK ME AS BRAINIEST
Similar questions