面向对象程序设计教程(C#版)刘瑞新习题答案.pdf
文本预览下载声明
第1章 习题解答
一、选择题
1. B
2. A
3. D
二、编程题
1.
namespace Pro1_1
{
//定义狗类
class Dog
{
public string name;
public int age;
public string sex;
public string furColor;
public void Bark()
显示全部