📅  最后修改于: 2022-03-11 14:57:32.884000             🧑  作者: Mango
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;
}
}