Chat with our AI personalities
Assuming that the length of a rectangle is greater than its breadth, any value L such that 15 ≤ L < 30 cm will do. Then breadth, B = 30 - L cm.
No, but language implies it.
Add the length and breadth and then double it.
This length (diagonal) = sq.rt ( l2 + b2 ) where 'l' is length of the rectangle and 'b' is the breadth of the rectangle.
#include<stdio.h> void main() { float length, breadth, area, perimeter; printf("Enter the length & breadth of a Rectangle\n(length breadth): "); scanf("%f %f",&length,&breadth); area=length*breadth; perimeter=2*(length+breadth); printf(" Area of the Rectangle=%0.3f\n",area); printf("Perimeter of the Rectangle=%0.3f\n",perimeter); printf("(Press ENTER to exit.)"); getch(); printf("\n"); }