C# 程序用来执行货币转换
假设你需要以印度卢比来获取 10 美元的值。
Firstly, set the variables: double usd, inr, val;
现在设置美元并将其转换为印度卢比。
// how many dpllars usd = 10; // current value of US$ val = 69; inr = usd * val;
让我们看完整的代码 −
示例
using System; namespace Demo { public class Program { public static void Main(string[] args) { Double usd, inr, val; // how many dpllars usd = 10; // current value of US$ val = 69; inr = usd * val; Console.WriteLine("{0} Dollar = {1} INR", usd, inr); } } }
输出
10 Dollar = 690 INR
广告