我是 c# 的新手,需要一些循环语句的帮助。
我正在通过设计一个程序来练习,该程序计算每英里的成本(即 50 便士)并每 1000 英镑增加 30.00 英镑作为磨损费用。
如果有人能给我一些很棒的提示,我很难理解逻辑。
namespace ConsoleApplication10
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Input start milleage:");
decimal StartMile = Convert.ToDecimal(Console.ReadLine());
Console.WriteLine("Input Finish milleage:");
decimal FinishMile = Convert.ToDecimal(Console.ReadLine());
decimal TotalMilleage = FinishMile - StartMile;
if (TotalMilleage < 1000)
TotalMilleage = TotalMilleage / 2;
Console.WriteLine("Total charge for hire:{0:C}", TotalMilleage);
Theres the code Ive done so far :S