C#之哈希表学习案例

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Collections;namespace Hashtable_test{ class Program { static void Main() { …… 阅读全文

C#之SortedList学习案例

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Collections;namespace SortedList_test{ class Program { static void Main() { …… 阅读全文

C#之方法传递结构和类之间的区别学习案例

using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace struct_test{ class Program { class theClass { public string willICh …… 阅读全文

C#之递推问题

//求下列数列的前20项// * 0 n=0// * 1 n=1//y[n]=* 2 n=2// * y[n-1]+2*y[n-2]+y[n-3] n>2using System;using System.Collecti …… 阅读全文

C#之杨辉三角特殊格式输出

using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace test{ class Program { int JieChen(int m) //m的阶乘 { int Re …… 阅读全文

C#之保留指定小数点位数

ROUND()是C#中math的一个成员函数.System.Math.Round(),这个函数有四种用法,最长用的是对小数点位数的舍入.但这和现实生活中的“四舍五入”有一定区别,也有别JAVA中Math.Round(),跟sql中的Math.Round()方法有别.C#中Math.round()采用的是所谓“四舍六入五成双”的银行家舍入法---要舍得位如果是5则舍入后末位要求是偶数,要舍得位如果 …… 阅读全文

C#之100以内的基本运算出题系统

using System;using System.Collections.Generic;using System.Linq;using System.Text;/*namespace Point{ class Program { static void Main() { float f = 1.2550f; …… 阅读全文

C#之取补

using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace test{ class Program { static void Main() { int[] i = {0,1,2,3,4,5,6 …… 阅读全文