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();
}
}
}
C#R认证第二单元第一题
时间: 2024-11-01 18:09:50
C#R认证第二单元第一题的相关文章
C#认证第二单元 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
扩展欧几里得模板(洛谷1082 同余方程NOIP 2012 提高组 第二天 第一题)
题目描述 求关于 x 的同余方程 ax ≡ 1 (mod b)的最小正整数解. 输入输出格式 输入格式: 输入只有一行,包含两个正整数 a, b,用一个空格隔开. 输出格式: 输出只有一行,包含一个正整数 x0,即最小正整数解.输入数据保证一定有解. 输入输出样例 输入样例#1: 3 10 输出样例#1: 7 说明 [数据范围] 对于 40%的数据,2 ≤b≤ 1,000: 对于 60%的数据,2 ≤b≤ 50,000,000: 对于 100%的数据,2 ≤a, b≤ 2,000,000,000
C#第二单元 11题
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks; namespace Txst_2._1{ class Animal { private Boolean m_sex; private string m_sound; public Animal() {
C#第二单元11题
C#认证二单元 第一题
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_s
第二次 第一题
1. 写一个Java程序,用于分析一个字符串中各个单词出现的频率,并将单词和它出现的频率输出显示.(单词之间用空格隔开,如“Hello World My First Unit Test”): 2. 编写单元测试进行测试: 3. 用ElcEmma查看代码覆盖率,要求覆盖率达到100%. 1 import java.util.HashMap; 2 import java.util.Iterator; 3 import java.util.Map; 4 import java.util.Set; 5
.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题.
第一题: 第11题:
第二单元练习 第一题和第十一题
第一题 animal类 class Animal { private bool m_sex; private int m_age; public bool Sex { get { return m_sex; } set { m_sex = value; } } public int Age { get { return m_ag