C ++
 Computer >> コンピューター >  >> プログラミング >> C ++

華氏を摂氏に変換するC++プログラム


このプログラムでは、C++を使用して摂氏を華氏に変換する方法を説明します。私たちが知っているように、式は単純です。

華氏を摂氏に変換するC++プログラム

アルゴリズム

Begin
Take the Celsius temperature in C
calculate F = (9C/5)+32
return F
End

サンプルコード

#include<iostream>
using namespace std;
main() {
   float f, c;
   cout << "Enter temperature in Celsius: ";
   cin >> c;
   f = (9.0*c/5.0)+32;
   cout << "Equivalent Fahrenheit temperature is: " << f;
}

出力

Enter temperature in Celsius: 37
Equivalent Fahrenheit temperature is: 98.6

  1. 摂氏から華氏への変換を実行するC#プログラム

    まず、摂氏温度を設定します- double celsius = 36; Console.WriteLine("Celsius: " + celsius); 次に、華氏に変換します: fahrenheit = (celsius * 9) / 5 + 32; 次のコードを実行して、摂氏を華氏に変換してみてください。 例 using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Demo {    class MyApp

  2. 華氏を摂氏に変換するC#プログラム

    まず、華氏温度を設定します- double fahrenheit = 97; Console.WriteLine("Fahrenheit: " + fahrenheit); 摂氏に変換します- celsius = (fahrenheit - 32) * 5 / 9; 例 次のコードを実行して、華氏を摂氏に変換してみてください。 using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Demo {    class M