我最亲爱的说

子非鱼,焉知鱼之乐.

导航

2012年11月28日 #

诫子篇

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

posted @ 2012-11-28 20:36 我最亲爱的说 阅读(164) 评论(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 我最亲爱的说 阅读(111) 评论(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 我最亲爱的说 阅读(134) 评论(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 我最亲爱的说 阅读(164) 评论(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 我最亲爱的说 阅读(160) 评论(0) 推荐(0)