C#认证考试试题汇编: 第二单元:1,11

1、

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Txst2_1
{
class Animal
{
private Boolean m_sex;
private int m_age;
public bool Sex
{
get { return m_sex; }
set { m_sex = false; }
}
public int Age
{
get { return m_age; }
set { m_age = value; }
}
public virtual string Introduce()
{
if (Sex == true)
return "This is a male Animal";
else
return "This is a female Animal";
}
}
class Dog:Animal
{
public Dog()
{
Sex = true;
}
public override string Introduce()
{
if (Sex == true)
return "This is a male Dog";
else
return "This is a female Dog";
}
}
class Cat:Animal
{
public override string Introduce()
{
if (Sex == true)
return "This is a male Cat";
else
return "This is a female Cat";
}
}
class Program
{
static void Main(string[] args)
{
Animal ani = new Animal();
Console.WriteLine(ani.Introduce());
Animal dog = new Dog();
Console.WriteLine(dog.Introduce());
Animal cat = new Cat();
Console.WriteLine(cat.Introduce());
Console.Read();
}
}
}

11、

namespace Txst_2._1
{
class Animal
{
private Boolean m_sex;
private string m_sound;
public Animal()
{
m_sex = false;
m_sound = "Howl...";
}
public bool Sex
{
get{ return m_sex; }
set { m_sex = value; }

}
public string Sound
{
get { return m_sound; }
set { m_sound = value; }
}
public virtual string Roar()
{
return "Animal" + m_sound;
}
}
class Dog:Animal
{
public Dog()
{
Sex = true;
Sound = "Wow...";
}
public override string Roar()
{
return "Dog:" + Sound;
}
}
class Cat:Animal
{
public Cat()
{
Sound = "Miaow...";
}
public override string Roar()
{
return "Cat:" + Sound;
}
}
class Cow:Animal
{
public Cow()
{
Sound = "Moo...";
}
public override string Roar()
{
return "Cow:" + Sound;
}
}
class Program
{
static void Main(string[] args)
{

Animal animal;
animal = new Dog();
Console.WriteLine(animal.Roar());
animal = new Cat();
Console.WriteLine(animal.Roar());
animal = new Cow();
Console.WriteLine(animal.Roar());
Console.Read();
}
}
}

时间: 2024-11-07 03:30:02

C#认证考试试题汇编: 第二单元:1,11的相关文章

.C#认证考试试题汇编:第一单元:1,11 第二单元:1,11

第一单元1,11 好久没用异或都快忘了,就让我们一起来了解哈啥子事异或 说的这个,就不经意让我想起书上的几种交换值得方法了 我这儿说的交换的方法是,不使用第三个变量来交换,而是两个 实现条件是C a=100,b=10;第一种 缺点可能会如果超出范围溢出a=a+b; a=110,b=10b=a-b; b=100,a=110a=a-b; a=-10,b=100b=100,a=10;第二种 缺点可能会如果超出范围溢出a=a*b;a=1000,b=10b=a/b;b=100,a=1000a=a/b;a=

C#认证考试试题汇编:第一单元:1,11

1. 2.

C#认证考试试题汇编3_1

private void 大ToolStripMenuItem_Click(object sender, EventArgs e) { this.Width = 600; this.Height = 400; toolStripStatusLabel1.Text = "大窗体"; } private void 中ToolStripMenuItem_Click(object sender, EventArgs e) { this.Width = 300; this.Height = 20

C#认证考试试题汇编3_2

private void 红色ToolStripMenuItem_Click(object sender, EventArgs e) { this.BackColor = Color.Red; toolStripStatusLabel1.Text = "红色"; } private void 绿色ToolStripMenuItem_Click(object sender, EventArgs e) { this.BackColor = Color.Green; toolStripSta

c#认证考试试题。

1.1.输入一个正整数n,如果是偶数则求n以内的所有偶数和,奇数则求n以内的所有奇数的和. static void Main(string[] args) { int result=0; Console.WriteLine("请输入一个正整数:"); int n = Convert.ToInt32(Console.ReadLine()); if(n%2==0) { for (int i = 0; i <= n; i++) if (i % 2 == 0) result += i;

V5天下-安德揭密CCIEv5认证考试 就业和前途

在笔者看来,RSCCIEv5,这都不是事儿!您看Yeslab(上海)学员--来自思科的妹子一举拿下CCIEv5.0认证!!又一位double 女IE诞生 那么什么是事儿? 如何学习是事儿!这是我们提到的第一件事 笔者从最初的沁园公寓701室(Yeslab最原始的老巢),到沁园公寓907室(Yeslab的第一步扩张),之后搬到苏州长远天地1005室,又扩展到长远天地601室(Yeslab安全和DC的基地),再之后到,安德作为小弟和几位同僚奔赴上海这个国际大都市,我们的小圈子从华鼎大厦16D开始,而

难忘战斗岁月————PMP认证考试总结

难忘战斗岁月 ----PMP认证考试总结 工作多年,一直不忘大学导师的那番语重心长的教训,也曾在几个很好的上司手下工作过,深知当代职场有如逆水行舟.记得一句说话,"不断战斗的人是不会腐坏的".于是我选择了PMP认证这场战斗.考取证书并不是目的,而只是一个手段.重要的是在备考的过程中,能够学到更多有利于工作的知识,并且最终应用到工作去.只有这样才得以在当今职场洪流中,逆流而上. 闲话表过,说说我参加培训和备考的过程.说起来,确实是一种缘分,去年秋天刚到深圳的我,仅凭模糊的印象,搜索&qu

MOOC 面向对象软件开发实践之基本技能训练 第二单元作业

这几天期末考试周  bolg 比较忙 停更了几天 晚上还是抽空把金老师第二单元的作业给做了 基本功能都实现  对象多对多信息交换  对象序列化  等等内容 都一一实现了 确实对初学OOP的人来说 很有帮助  代码就不给了 很简单 自己努力google 或者留言你的问题

[家里蹲大学数学杂志]第041期中山大学数计学院 2008 级数学与应用数学专业《泛函分析》期末考试试题 A

1 ( 10 分 ) 设 X 是 Banach 空间, f 是 X 上的线性泛函. 求证: f∈L(X) 的充分必要条件是 N(f)={x∈X; f(x)=0} 是 X 的闭线性子空间. 证明: 必要性. 设 N(f)?xn→x , 则 f(x)==limn→∞f(xn)(f∈X?)limn→∞0=0. 充分性. 用反证法. 若 f 无界, 则 ? n∈N, ? xn∈X, s.t. |f(xn)|>n∥xn∥, 而 ∥∥∥xnf(xn)∥∥∥<1n.(1) 令 yn=xnf(xn)?x1f(