摘要: 第11题: 阅读全文
posted @ 2017-09-17 22:58 周小怪 阅读(71) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2017-09-17 22:56 周小怪 阅读(149) 评论(0) 推荐(0)
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks; namespace Txst2_1{ class Animal { priv 阅读全文
posted @ 2017-09-17 22:55 周小怪 阅读(118) 评论(0) 推荐(0)
摘要: namespace Txst_2._1{ class Animal { private Boolean m_sex; private string m_sound; public Animal() { m_sex = false; m_sound = "Howl..."; } public bool 阅读全文
posted @ 2017-09-17 22:54 周小怪 阅读(78) 评论(0) 推荐(0)
摘要: C#:专门为.NET应用开发的语言。 分号作为结尾。单行注释:“//”,多行注释:“/*xxxxxx*/”。 常量:值在使用过程中不会变化的变量。(const int a) bool表达式中等号用“==”。 每条分支语句必须有“break”,“case”后面的值必须为常数。 阅读全文
posted @ 2017-09-17 21:53 周小怪 阅读(119) 评论(0) 推荐(0)