摘要: 数组:解决同一类大量数据在内存存储和运算的功能 分类:一维数组、二维数组、三维数组 特点:连续,同一类数据 一维数组:定义:指定类型,指定长度,指定名称 int[] a=new int[5]; 创建一个int类型的数组,长度是5,从1开始 new是动词int[] a=new int[5]{90,9... 阅读全文
posted @ 2015-06-19 15:46 蓝瑟黄昏 阅读(100) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication19 { class Program { static void Main(string[] args) { ... 阅读全文
posted @ 2015-06-19 14:30 蓝瑟黄昏 阅读(140) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 函数 { class Program { /// /// 判断质数 /// ... 阅读全文
posted @ 2015-06-19 10:11 蓝瑟黄昏 阅读(148) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 结构体 { class Program { struct t... 阅读全文
posted @ 2015-06-19 10:08 蓝瑟黄昏 阅读(228) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace ConsoleApplication1{ class... 阅读全文
posted @ 2015-06-19 10:03 蓝瑟黄昏 阅读(103) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 数组 { class Class1 { static void main (string[] args) ... 阅读全文
posted @ 2015-06-19 08:57 蓝瑟黄昏 阅读(428) 评论(0) 推荐(0) 编辑