摘要:
namespace ConsoleApplication2{ class Program {//letter 字母 gigit 数字 symbol 符号 static void Main(string[] args) { Console.WriteLine("请输入字符"); string s = 阅读全文
摘要:
namespace ConsoleApplication2{ class Program { static void Main(string[] args) { string str1, str2, str3, str4; str1 = "一个人至少拥有一个梦想,有一个理由去坚强"; str2 = 阅读全文
摘要:
namespace ConsoleApplication2{ class Program { static void Main(string[] args) { string str1, str2; str1 = "冰冻三尺";//字符串完全由中文字符组成 str2 = "2017召唤大赛正式在HH 阅读全文
摘要:
namespace ConsoleApplication2{ class Program { static void Main(string[] args) { int[] a = { 7, 8, 9 ,1,2,3,4,5,6,0}; int[] b = new int[10]; Array.Cop 阅读全文
摘要:
namespace ConsoleApplication2{ class Program { static void Main(string[] args) { int[] Arrays = new int[] { 24, 14, 35, 86, 55, 68, 15 };//创建一个数组名为Arr 阅读全文
摘要:
using System;using System.Collections.Generic;using System.Linq;using System.Text; namespace ConsoleApplication2{ class Program { static void Main(str 阅读全文