-
[C언어] 사다리꼴 넓이 구하기iOS/C 2021. 5. 21. 14:16
int top; int bottom; int height; printf("윗변: "); scanf("%d", &top); printf("밑변: "); scanf("%d", &bottom); printf("높이: "); scanf("%d", &height); float width; width = (top + bottom) * height/2.0; printf("윗변(%d), 밑변(%d), 높이(%d)의 사다리꼴 넓이는 %.3f입니다", top, bottom, height, width);
사다리꼴의 넓이를 구해봤습니다.
감사합니다.
'iOS > C' 카테고리의 다른 글
[C언어] 소수점 제거 (0) 2021.05.21 [C언어] 부호 반전 (0) 2021.05.21 [C언어] 입력, 출력 (0) 2021.05.21