A PHP Error was encountered

Severity: Warning

Message: Cannot modify header information - headers already sent by (output started at /home/premierconsult/public_html/index.php:65)

Filename: core/Input.php

Line Number: 408

A PHP Error was encountered

Severity: Warning

Message: session_start(): Cannot send session cookie - headers already sent by (output started at /home/premierconsult/public_html/index.php:65)

Filename: Session/Session.php

Line Number: 143

A PHP Error was encountered

Severity: Warning

Message: session_start(): Cannot send session cache limiter - headers already sent (output started at /home/premierconsult/public_html/index.php:65)

Filename: Session/Session.php

Line Number: 143

A PHP Error was encountered

Severity: Warning

Message: Cannot modify header information - headers already sent by (output started at /home/premierconsult/public_html/index.php:65)

Filename: controllers/Questions.php

Line Number: 330

اكتب برنامج يقوم بحساب مساحة ومحيط األسطوانة، علما بان نصف القطر واالرتفاع هي مدخالت من المستخدم

اكتب برنامج يقوم بحساب مساحة ومحيط األسطوانة، علما بان نصف القطر واالرتفاع هي مدخالت من المستخدم


اكتب برنامج c++ يقوم بحساب مساحة ومحيط الاسطوانة، علما بان نصف القطر والارتفاع هي مدخالت من المستخدم،

علما بأن مساحة الاسطوانة =( محيط القاعدة * الارتفاع) + (2 *مساحة القاعدة)

ومحيط الاسطوانة = مساحة القاعدة* الارتفاع

الأجوبة

#include <iostream>

using namespace std;

int main(){

float cylinderCircumference, cylinderArea, cylinderRadius

, cylinderHeight;

cout << "please enter cylinder height:\t";

cin >> cylinderHeight;

cout << "please enter cylinder radius:\t";

cin >> cylinderRadius;

cylinderCircumference = cylinderRadius * cylinderRadius*3.14*cylinderHeight;

cylinderArea = (2 * 3.14*cylinderRadius*cylinderHeight) + (2 * 3.14*cylinderRadius*cylinderRadius);

cout << "Cylinder Circumference  = " << cylinderCircumference<<endl;

cout << "Cylinder Area = " << cylinderArea << endl;

 

}

 

هل كان المحتوى مفيد؟

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

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