📜  如何计算美元兑比索 - 任何代码示例

📅  最后修改于: 2022-03-11 14:57:32.884000             🧑  作者: Mango

代码示例1
using System;

class MainClass {
  public static void Main (string[] args) {
    double result = total(Convert.ToInt32(Console.ReadLine()));
   Console.WriteLine(result);
  }
  static double Money(double usd)
  {
    double total = usd / 50.25;
    return total;
  }
}