using System; namespace task.lmcjl.com { class Demo { void print(int i){ Console.WriteLine("打印 int 类型的数据:{0}", i); } void print(double d){ Console.WriteLine("打印 double 类型的数据:{0}", d); } void print(string s){ Console.WriteLine("打印 string 类型的数据:{0}", s); } static void Main(string[] args) { Demo p = new Demo(); p.print(123); p.print("C语言中文网"); p.print(3.1415926); } } }运行结果如下:
打印 int 类型的数据:123
打印 string 类型的数据:C语言中文网
打印 double 类型的数据:3.1415926
using System; namespace task.lmcjl.com { abstract class Shape{ public abstract int area(); } class Rectangle : Shape{ private int width, height; public Rectangle(int w, int h){ width = w; height = h; } public override int area(){ return (width * height); } } class Demo { static void Main(string[] args) { Rectangle r = new Rectangle(12,15); double a = r.area(); Console.WriteLine("长方形的面积为: {0}",a); Console.ReadKey(); } } }运行结果如下:
长方形的面积为: 180
本文链接:http://task.lmcjl.com/news/12938.html