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

更新于: 22-6 月-2020

4K+ 观看

开启你的 职业生涯

通过完成该课程获得认证

入门
广告