C# 函数重载 示例 求圆的面积
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication { class Circle { private const float PI = 3.141526F ; // 1.没有任何已知条件 public static double Area() { Console.WriteLine( " 空空如也! " ); return 0 ; } // 2.已知圆心坐标 public static double Area( int x1, int y1) { Console.WriteLine( " 这是一个圆点,坐标为({0},{1}) " ,x1,y1); return 0 ; } // 3.已知半径 public static double Area( double r) { double theArea; theArea = PI * r * r; return theArea; } // 4.已知圆心坐标和半径 public static double Area( int x1, int y1, double r) { Console.WriteLine( " 这是一个圆点在({0},{1})半径为{2}的圆