摘要:
数组:解决同一类大量数据在内存存储和运算的功能 分类:一维数组、二维数组、三维数组 特点:连续,同一类数据 一维数组:定义:指定类型,指定长度,指定名称 int[] a=new int[5]; 创建一个int类型的数组,长度是5,从1开始 new是动词int[] a=new int[5]{90,9... 阅读全文
摘要:
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication19 { class Program { static void Main(string[] args) { ... 阅读全文
摘要:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 函数 { class Program { /// /// 判断质数 /// ... 阅读全文
摘要:
using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 结构体 { class Program { struct t... 阅读全文
摘要:
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace ConsoleApplication1{ class... 阅读全文
摘要:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 数组 { class Class1 { static void main (string[] args) ... 阅读全文