#数组(二) 一.数组的应用 (一)冒泡排序 冒泡排序是一种简单的排序算法。它重复地走访过要排序的数列,一次比...
#数组(二) 一.数组的应用 (一)冒泡排序 冒泡排序是一种简单的排序算法。它重复地走访过要排序的数列,一次比...
#异常处理 知识点 try—catch C#语言的异常处理功能提供了处理程序运行时出现的任何意外或异常情况的方法。...
#条件语句 学编程不是看书,不是听老师讲,而是自己动手写 一.If语句 (一)问题 编程实现:如果跪键盘的时间大于60分钟,...
#变量及数据类型 一.变量 (1)为什么使用变量 内存地址不好记,使用变量代替内存地址,好记 (2)什么是变量 用来存储数据 (...
string flag=""; string admin = ""; string password = ""; do{ ...
try { Console.WriteLine("*******欢迎进入抽奖系统*******"); Console.W...
try { Console.WriteLine("*******欢迎进入抽奖系统*******"); Console.WriteL...
try { Console.WriteLine("*******欢迎进入抽奖系统*******"); Console.WriteL...
try { Console.WriteLine("*******欢迎进入抽奖系统*******"); Console.WriteL...
#编码 try { for (int i = 0; i < 3; i++) { Console.WriteLi...
#编码 Console.WriteLine("1——100,不能被7整除的数:"); int nums = 0; int count = 0; ...
#编码 空 #效果 空
#编码 int[] array = { 1, 3, -1, 5, -2 }; int[] newArray = new int[array.Lengt...
#编码 for (int i = 1; i <= 9; i++) { for (int j = 1; j <= i; j++) ...
#编码 Console.Write("输入行数:"); string str_a = Console.ReadLine(); int a ...
#编码 Console.Write("输入行数:"); string str_a = Console.ReadLine(); int a =...
#编码 Console.Write("输入行数:"); string str_a = Console.ReadLine(); int a ...
#编码 try { Console.WriteLine("输入数字"); int yi = 0; int er ...
#编码 int [ ] points = {18,25,7,36,13,2,89,63}; int min = points[0]; int inde...