スタック オーバーフロー コミュニティ。
華氏温度を摂氏に、摂氏を華氏に変換するプログラムを書いています。プログラムにはシンプルなメニューがあり、オプションを選択するためのユーザー入力を取得します。ユーザーが無効なオプションを入力した場合に備えて、少し do-while ループを実装しました。ユーザーが 1、2、または 3 (有効な 3 つのオプション) を選択すると、プログラムは if ステートメントを実行し、その中のブロック コードを実行して、ループを中断します。ただし、ユーザーが他のもの (無効なオプション) を入力すると、プログラムはブロック コードを else で実行し、ループの先頭に戻り (オプションを選択)、プロセスでフリーズまたはクラッシュします。
コードは次のとおりです。
// James Archbold
// Convert.cs
// A program to convert fahrenheit to celsius or celsius to fahrenheit
//16 February 2013
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Convert_Temperature
{
class Convert
{
static void Main(string[] args)
{
float F, C;
string option;
do
{
Console.WriteLine("\nWelcome to 'Convert' program!");
Console.WriteLine("***********************Menu**********************************");
Console.WriteLine("1. Fahrenheit to Celsius");
Console.WriteLine("2. Celsius to Fahrenheit");
Console.WriteLine("3. Goodbye");
Console.Write("\nPlease enter an option: ");
option = Console.ReadLine();
switch (option)
{
case "1":
Console.Write("Please enter your Fahrenheit temperature: ");
F = int.Parse(Console.ReadLine());
C = (5f / 9f) * (F - 32);
Console.WriteLine("The temperature is {0} degrees Celsius.", C);
Console.ReadKey();
break;
case "2":
Console.Write("Please enter your Celsius temperature: ");
C = int.Parse(Console.ReadLine());
F = 5f / 9f * C - 32;
Console.WriteLine("The temperature is {0} degrees Fahrenheit.", F);
Console.ReadKey();
break;
case "3":
Console.WriteLine("Goodbye!");
Console.ReadKey();
break;
default:
Console.WriteLine("That is not a valid option!");
break;
}
Console.WriteLine("Please press Enter to continue...");
Console.ReadLine();
Console.WriteLine();
} while (option != "3");
}
}
}