우리는 평행사변형의 변을 알고 있으며 주어진 변으로 평행사변형의 둘레를 생성하고 결과를 표시하는 것이 과제입니다
평행사변형은 -
그림에 표시된 "a"와 "b" 아래는 평행사변형의 변이고, 그림에 표시된 변은 평행합니다.
평행사변형의 둘레/둘레는 다음과 같이 정의됩니다. −
평행사변형의 둘레 = 2(a + b)
a + 2 * b
Input-: a = 23 and b = 12 Output-: Circumference of a parallelogram is : 70.00 Input-: a = 16.2 and b = 24 Output-: Circumference of a parallelogram is : 80.4
START Step 1-> Declare function to calculate circumference of parallelogram float circumference(float a, float b) return ((2 * a) + (2 * b)) Step 2-> In main() Declare float a = 23, b = 12 Call circumference(a, b) STOP
#include <stdio.h> //function for circumference of parallelogram float circumference(float a, float b) { return ((2 * a) + (2 * b)); } int main() { float a = 23, b = 12; printf("Circumference of a parallelogram is : %.2f", circumference(a, b)); return 0; }
Circumference of a parallelogram is : 70.00
위 내용은 평행사변형의 둘레를 구하는 C 프로그램의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!