اكتب برنامج باستخدام لغة البرمجة ++c لإدخال طول (length) وعرض (width) مستطيل
- برمجة سي بلس بلس
- 2021-10-19
- mhanasmh00489829403
الأجوبة
#include <iostream.h>
main()
{
int length, width;
cout<<"length = "; cin>>length;
cout<<"width = "; cin>>width;
cout<<"perimeter = "<<2*(length+width)<<"\n";
cout<<"area = "<<length*width;
}
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال