我最亲爱的说

子非鱼,焉知鱼之乐.

导航

2012年12月2日 #

C#Process类应该声明个什么引用空间啊 找不到类型或命名空间名称“Process”(是否缺少 using 指令或程序集引用?) 如何解决?

摘要: System.Diagnostics; 应用这个之后,Process类就会变成绿色的,也就是可以被调用了--------------找不到类型或命名空间名称“Process”(是否缺少 using 指令或程序集引用?) 如何解决?using System.Diagnostics;参考资料:http://zhidao.baidu.com/question/73491906.html 阅读全文

posted @ 2012-12-02 14:27 我最亲爱的说 阅读(798) 评论(0) 推荐(0) 编辑

2012年12月1日 #

拓展项目2-1

该文被密码保护。 阅读全文

posted @ 2012-12-01 19:54 我最亲爱的说 阅读(6) 评论(0) 推荐(0) 编辑

拓展项目3-1

该文被密码保护。 阅读全文

posted @ 2012-12-01 19:49 我最亲爱的说 阅读(7) 评论(0) 推荐(0) 编辑

2012年11月28日 #

诫子篇

摘要: 诫子篇 诸葛亮 夫君子之行,静以修身,俭以养德。非澹泊无以明志,非宁静无以致远。夫学须静也,才须学也,非学无以广才,非志无以成学,淫漫则不能励精,险躁则不能治性,年与时驰,意与日去,遂成枯落,多不接世,悲守穷庐,将复何及! 阅读全文

posted @ 2012-11-28 20:36 我最亲爱的说 阅读(151) 评论(0) 推荐(0) 编辑

编程实践5-8

摘要: 编程实践5-8课程元素类型 任务杨辉三角using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace sj_5_8{ class Program { static void Main(string[] args) { int[,] iA = new int[10, 10]; for (int i = 0; i < iA.GetLength(0); i++) { ... 阅读全文

posted @ 2012-11-28 11:44 我最亲爱的说 阅读(103) 评论(0) 推荐(0) 编辑

课堂题目5-4

摘要: 课堂题目5-4课程元素类型 任务输入某班10名同学语文、数学、英语期末考试成绩,输出各门课程平均成绩。总结:二维数组开端using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace _5_4{ class Program { static void Main(string[] args) { double[,] dA = new double[3, 3]; //存放成绩数组 string[]... 阅读全文

posted @ 2012-11-28 11:04 我最亲爱的说 阅读(124) 评论(0) 推荐(0) 编辑

编程实践5-7

摘要: 编程实践5-7课程元素类型 任务统计选票。100位村民投票,从3位候选人中选出村长和村支书。规定得票最高者为村长,次高者为村支书。统计时,输入得票候选人的姓氏,输出投票结果。总结:大于两个的数据,尽量用数组,写程序要考虑到拓展,要程序拥有良好的拓展性。using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace sj5_7{ class Program { static void Main(string[] args) { ... 阅读全文

posted @ 2012-11-28 09:57 我最亲爱的说 阅读(154) 评论(0) 推荐(0) 编辑

编程实践5-6

摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace sj5_6{ class Program { static void Main(string[] args) { string strA, strB; //string strC, strD; int j; strA = "aeiouAEIOU"; strB = C... 阅读全文

posted @ 2012-11-28 09:06 我最亲爱的说 阅读(147) 评论(0) 推荐(0) 编辑

2012年11月27日 #

编程实践5-5

摘要: 课程元素类型 任务随机产生100个大小写字母,统计其中各元音字母(不分大小写)的个数。总结:char型不能直接赋值给string型。using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace sj_5_5{ class Program { static void Main(string[] args) { int[] dA; int i,j,n; ... 阅读全文

posted @ 2012-11-27 11:14 我最亲爱的说 阅读(127) 评论(0) 推荐(0) 编辑

5-3字符逐位比较大小

摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace _5_3{ class Program { static void Main(string[] args) { string strA, strB; int i; bool bA; i = 0; bA = true; Console.Write... 阅读全文

posted @ 2012-11-27 09:34 我最亲爱的说 阅读(203) 评论(0) 推荐(0) 编辑