最簡單的日幣計算程式
今天想去日本玩,打算將兩萬元台幣換成日幣,先做一個簡單的 Console 程式來計算一下。
- 開啟 Visual Studio
- 建立 C# 主控台專案
- 查一下日幣匯率是多少 (0.2584)
- 開始寫程式!
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Exchange
{
class Program
{
static void Main(string[] args)
{
double rate = 0.2584;
double a = 20000;
double b = a / rate;
Console.WriteLine(b);
Console.Read();
}
}
}
執行結果:
77399.3808049536
成功了! 但似乎還有很多可以改進的地方,接下來我們一步步改進吧!