#include #define TRIANGLE(a,b)?((a)*(b)/2) int main() { ?? ?int bottom, height; ?? ?printf(\"삼각형의 넓이를 구하는 프로그램\\n\"); ?? ?printf(\"밑변 : \"); ?? ?scanf(\"%d\", &bottom); ?? ?printf(\"높이 : \"); ?? ?scanf(\"%d\", &height); ? ?? ?printf(\"삼각형의 넓이는 %d입니다.\\n\", TRIANGLE(bottom, height)); ?? ?return 0; }
[무물보AI] 답변 로딩중...