摘要:
// 练习:// 写一个Person和Student,姓名(name)性别(gender)年龄(age)由父类构造方法初始化// 年龄默认为0,性别随机,姓名有子类指定调用// 创建一个Student对象,并做自我介绍// 同时实现:实例化一个Student对象,指定姓名,性别,年龄namespace 继承_封装_多态{class Program{static void Main(string[] args){Student s1 = new Student("张三",12);s1.SayHello();Student s2 = new Student("小王&q 阅读全文
摘要:
public Form1() { InitializeComponent(); // 默认情况下,窗体由操作系统分配位子 StartPosition = FormStartPosition.Manual; Location = new Point(0, 0); } int seed = 5; private void timer1_Tick(object sender, EventArgs e) { // 此时写在里... 阅读全文
摘要:
1、求min与max间数的所有奇数的和 static void Main(string[] args) { Console.WriteLine(res); Console.ReadKey(); } private static int Munodd(int min,int max) { int num = 0; for (int i = min; i <= max; i++) { if (i % 2 == 1) { num += i; } } return num; }2、找数组中... 阅读全文