キーボードから都市の気温を華氏で入力します。次に、この温度を摂氏に変換するプログラムを作成する必要があります。
したがって、式は次のとおりです。
°C = (°F - 32) x 5/9
サンプル入力/出力:
Enter Temperature of Dhaka in Fahreinheit: 98.6
Temperature of Dhaka in Centigrade 37.0 C
Now, i have tried with this, but not works.
コード:
# include <stdio.h>
void main()
{
float C;
printf("Pleas Enter Your Fahreinheit Value to see in centrigate=");
scanf("%d",&C);
printf(C);
float output;
output=(C-32)*(5/9);
printf("The centrigate Value is = %.2lf\n\n" ,output);
}
誰が何が悪いのか教えてもらえますか?