커뮤니티 - 자유게시판
온도변환기 프로그래밍 작성 좀 부탁드립니다..
알토
-
- 작성일
- 2024-06-02
-
- 조회수
- 234
-
1
복학하고 공부중인데 어려워서 헤매고 있네요..
문제는 0도~180도 까지 15도 단위로 sin, cos, tan값을 구하는 프로그램을 작성하시오
입니다..
예시문은
#include
void print0ptions()
{
printf(" 'c' 섭씨온도에서 화씨온도로 변환\n");
printf(" 'f' 화씨온도에서 섭씨온도로 변환\n");
printf(" 'q' 종료\n");
}
double C2F(double c_temp)
{
return 9.0 / 5.0 * c_temp + 32;
}
double F2C(double f_temp)
{
return (f_temp - 32.0) * 5.0 / 9.0;
}
int main(void)
{
char choice;
double temp;
while (1) {
printoptions();
printf("메뉴에서 선택하세요.");
choice = getchar();
if (choice == 'q') break;
else if (choice == 'c') {
printf("섭씨온도: ");
scanf("%if", &temp;)
printf("화씨온도: %if \n", C2F(temp));
}
else if (choice == 'f') {
printf("화씨온도: ");
scanf("%if", &temp);
printf("섭씨온도: %if \n, F2C(temp));
}
getchar(); //엔터키 문자를 삭제하기 위하여 필요!
}
return 0;
}
온도변환기 프로그래밍 작성 좀 부탁드립니다.. : 창업정보 포털 오늘의창업
댓글 0