1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | #include <stdio.h> #include <stdlib.h> #include <math.h> double round( double mitbyun, double nope); void main() { double mitbyun,nope,result; printf ( "삼각형의 밑변 길이와 높이를 입력 받아 면적을 구하는 프로그램.\n" ); printf ( "입력은 소수점이 가능하도록 하고 결과값은 소수 3째 자리까지.\n" ); printf ( "단, 면적을 구하는 사용자 정의 함수를 활용하시오.\n" ); printf ( "삼각형의 밑변을 입력하시오.\n" ); scanf ( "%lf" , &mitbyun); printf ( "삼각형의 높이를 입력하시오.\n" ); scanf ( "%lf" , &nope); result = round(mitbyun,nope); printf ( "면적은 %.3f 입니다.\n" , result); } double round( double mitbyun, double nope) { double result; result = (mitbyun * nope) / 2.0; return (result); } |