iOS/C
-
[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); 사다리꼴의 넓이를 구해봤습니다. 감사합니다.
-
[C언어] 소수점 제거iOS/C 2021. 5. 21. 14:16
float count; count = 123.456789; printf("%.8f\n", count); printf("%.7f\n", count); printf("%.6f\n", count); printf("%.5f\n", count); printf("%.4f\n", count); printf("%.3f\n", count); printf("%.2f\n", count); printf("%.1f\n", count); printf("%.0f\n", count); float 소수점 제거입니다. 감사합니다.