摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication8{ class Program { static void Main(string[] args) { // 数组定义的三个方式 int[] array1 = { 1, 2, 3, 4, 5 }; int[] array2 = new int[5]; ...
阅读全文
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication3{ /// /// /// class Program { /// /// /// /// static void Main(string[] args) { Cat cat = new Cat(); ...
阅读全文
摘要:1,读入一个小数,将小数部分和整数部分交换:例如 3.14 ---〉14.3using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace TestExchange{ class Program { static void Main(string[] args) { while (true) { // 1,从控制台读入一个小数,存放在 testDouble 中 ...
阅读全文
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace TestString{ class Program { static void Main(string[] args) { string a = "hello"; string b = "h"; b +="ello"; string c = "hello"; if ...
阅读全文
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace TestClaclulate{ class Program { static void Main(string[] args) { // 1,定义double变量 double numberOne; double numberTwo; // 2,从控制台获得两个数 ...
阅读全文
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication5{ class Program { static void Main(string[] args) { Gender sex = Gender.F; switch (sex) { case Gender.M: ...
阅读全文
摘要:1,版本说明2,版本和依赖关系3,.net Framework 体系架构
阅读全文