Daily Rate

来源:岁月联盟 编辑:exp 时间:2011-09-09

#region Using directives
 
using System;
using System.Collections.Generic;
using System.Text;
 
#endregion
 
namespace DailyRate
{
    class Program
    {
        static void Main(string[] args)
        {
            (new Program()).run();
        }
 
        public void run()
        {
            double dailyRate = readDouble("Enter your daily rate: ");
            int noOfDays = readInt("Enter the number of days: ");
            writeFee(calculateFee(dailyRate, noOfDays));
        }
 
        private void writeFee(double p)
        {
            Console.WriteLine("The consultant's fee is: {0}", p * 1.1);
        }
 
        private double calculateFee(double dailyRate, int noOfDays)
        {
            return dailyRate * noOfDays;
        }
 
        private int readInt(string p)
        {
            Console.Write(p);
            string line = Console.ReadLine();
            return int.Parse(line);
        }
 
        private double readDouble(string p)
        {
            Console.Write(p);
            string line = Console.ReadLine();
            return double.Parse(line);
        }
    }
}

作者“McDelfino”