#include <stdio.h>
int Fahrenheit(float Fahrenheit, float Celsius);
int Celsius(float Fahrenheit, float Celsius);
int input(void);
int Add(int a);
void intro(void);
void result_print(float Fahrenheit, float Celsius);
int main(void)
{
int a;
float Fahrenheit, Celsius;
intro();
a = input();
}
int Fahrenheit(float Fahrenheit, float Celsius)
{
Fahrenheit = Celsius*1.8+32;
}
int Celsius(float Fahrenheit, float Celsius)
{
Celsius = (Fahrenheit - 32) / 1.8;
}
int input(void)
{
float input;
scanf("%f", &input);
return input;
}
void intro(void)
{
printf("섭씨 입력 1, 화씨 입력 2 : ");
}
일단은 이것저것 아는거 총동원해서 입력하는 창까지는 띄웠습니다
그런데 이렇게 짠게 맞는지, 또 1이나 2가 입력되었을 때 결과출력하는 함수를 또 어떻게 짜는지 턱 막혀버리네요.
도움의 손길을 받을 수 있을지요..?