私は c# の初心者で、いくつかのループ ステートメントについて助けが必要です。
私は、1 マイルあたりのコスト (50 ペンス) を計算し、1,000 ドルごとに 30.00 ポンドを損耗料金として追加するプログラムを設計して練習しています。
誰かが私にいくつかのヒントを与えることができれば、私はロジックを理解するのに問題があります.
namespace ConsoleApplication10
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Input start milleage:");
decimal StartMile = Convert.ToDecimal(Console.ReadLine());
Console.WriteLine("Input Finish milleage:");
decimal FinishMile = Convert.ToDecimal(Console.ReadLine());
decimal TotalMilleage = FinishMile - StartMile;
if (TotalMilleage < 1000)
TotalMilleage = TotalMilleage / 2;
Console.WriteLine("Total charge for hire:{0:C}", TotalMilleage);
Theres the code Ive done so far :S