摘要: using System.Diagnostics;namespace CH03{ class Program { static void Main(string[] args) { decimal decimalNumber = 4.2m; double doubleNumber1 = 0.1f * 42f; ... 阅读全文
posted @ 2011-11-29 16:48 jacky_j2ee 阅读(161) 评论(0) 推荐(0) 编辑
摘要: namespace CH03{ class Program { static void Main(string[] args) { int n = '3' + '4'; char c = (char)n; System.Console.WriteLine(n); Syst... 阅读全文
posted @ 2011-11-29 16:26 jacky_j2ee 阅读(105) 评论(0) 推荐(0) 编辑
摘要: namespace CH02{ class Program { static void Main(string[] args) { string[] languages; languages = new string[] { "1" }; int[] style1 = new int[1]; ... 阅读全文
posted @ 2011-11-29 15:10 jacky_j2ee 阅读(110) 评论(0) 推荐(0) 编辑
摘要: namespace CH02{ class Program { static void Main(string[] args) { int[] forSort = new int[] { 1, 2, 3, 9, 8, 7, 6 }; Syst... 阅读全文
posted @ 2011-11-29 15:04 jacky_j2ee 阅读(260) 评论(0) 推荐(0) 编辑