摘要:
namespace 刘老师推箱子{ class Program { static int kkk1, kkk2; static void Main(string[] args) { int x = 1, y = 1, i = 0; int[, ,] dt = new int[2, 10, 10] ... 阅读全文
摘要:
for (int i = 1; i <a.Length; i++){ for (int j = 1; j <=a.Length-i; j++) { if (a[j-1]<a[j])//位置交换 { temp=a[j-1]; a[j-1]=a[j]; a[j]=temp; } }} 阅读全文
摘要:
namespace 自己琢磨推箱子{ class Program { static void Main(string[] args) { //定义一个地图 int x=2,y=1;//小人的位置 int temp = 0; int[,] map = new int[10, 10] { {1,1,... 阅读全文
摘要:
namespace index{ class Program { static void Main(string[] args) { while (true) { string s = "abcdefghijklmn"; int i = s.IndexOf("f"); // i是f在字符串s中的位置... 阅读全文
摘要:
namespace yyyy_MM_dd_hh_mm{ class Program { static void Main(string[] args) { while (true){ try { Console.WriteLine("请输入您的出生年月日"); DateTime dt = Conve... 阅读全文
摘要:
namespace 随机生成验证码{ class Program { static void Main(string[] args) { while (true) { string s = "abcdefghijklmnopqrstuvwxyz"; string t = "李青用强力的回旋踢击退地方... 阅读全文
摘要:
static void Main(string[] args) { while (true) { Console.WriteLine("请输入一段英文:"); string s = Console.ReadLine(); int x = s.Length; //x代表字符的长度 for (int ... 阅读全文
摘要:
static void Main(string[] args) { while (true) { Console.WriteLine("请输入您的年份"); int x = Convert.ToInt32(Console.ReadLine()); try { DateTime y = Conve... 阅读全文
摘要:
static void Main(string[] args) { string a; Console.WriteLine("请输入您的邮箱地址:"); a = Console.ReadLine(); if (a.Contains("@")&&a.Contains(".com"))//这句话的意思是... 阅读全文
摘要:
static void Main(string[] args) { DateTime dt = DateTime.Now; Console.WriteLine(dt); DateTime nz = Convert.ToDateTime("2015-4-2 17:00"); //将nz的时间转换为电... 阅读全文