我最亲爱的说

子非鱼,焉知鱼之乐.

导航

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 我最亲爱的说 阅读(142) 评论(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 我最亲爱的说 阅读(212) 评论(0) 推荐(0)