Write a program in C++ to print the area and perimeter of a rectangle

  • برمجة سي بلس بلس
  • برمجة

Write a program in C++ to print the area and perimeter of a rectangle

Sample Output:

  Print the area and perimeter of a rectangle:                          
----------------------------------------------                         
 Input the width of the rectangle: 8.5                                 
 Input the height of the rectangle: 5.6                                
The area of the rectangle is: 47.6                                     
The perimeter of the rectangle is: 28.2

الأجوبة

#include <iostream>
using namespace std;
 
int main()
{
float ar,peri,width,height=0;
    cout << "\n\n Print the area and perimeter of a rectangle:\n";
	cout << "----------------------------------------------\n";
	cout << " Input the width of the rectangle: ";
	cin>> width;
	cout << " Input the height of the rectangle: ";
	cin>> height;	
	peri=2 * (width+height);
	ar= height * width;
	cout<<"The area of the rectangle is: "<<ar<<"\n";
	cout<<"The perimeter of the rectangle is: "<<peri<<"\n";
	
}
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...