我剛剛開始學習C編程。所以我有通過函數改變溫度的問題。請檢查這個程序,我在哪裏做錯了?謝謝!!!更改溫度F到C有問題
#include<stdio.h>
double f_to_c(double f);
double get_integer(void);
int main(void)
{
double a;
a = get_integer();
printf("he degree in C:%f", f_to_c(a));
return 0;
}
double get_integer(void)
{
double n;
printf("Enter the variable:");
scanf_s("%f", &n);
return n;
}
double f_to_c(double f)
{
int f, c;
c = 5.0/0.9*(f - 32.0);
return c;
}
`
你有什麼問題? – juanchopanza
get_integer()如何返回一個double對象? –
爲什麼f和c在f_to_c中聲明爲int? – amdixon