-
Main方法为程序的入口是程序的起点查看全部
-
C#的声明数组和赋值 数据类型[ ] 数组名 = new 数据类型[长度]; int[] age = new int[4];查看全部
-
任务题用电脑,2.22查看全部
-
using System; using System.Collections.Generic; using System.Text; namespace projGetMaxScore { class Program { static void Main(string[] args) { string[] name=new string[]{"吴松","钱东宇","伏晨","陈陆","周蕊","林日鹏","何昆","关欣"}; int[] score=new int[]{89,90,98,56,60,91,93,85}; int max=0; int a=0;//储存i foreach(int i in score) { if(score[i]>max) { max=score[i]; a=i; } } Console.Write("分数最高的是{0},分数是{1}",name[a],score[a]); } } }查看全部
-
打印查看全部
-
cs对应部分查看全部
-
3%10=0余10查看全部
-
二维数组取第一维的长度 stu.GetLength(0); 0指代第一维;查看全部
-
VS通过,mooc不通过 string[,] stu = new string[8, 2] { { "吴松", "89"}, { "钱东宇","90"}, {" 伏晨","98" }, {"陈陆","56" }, {"周蓉","60" }, {"林日鹏","91" }, {"何昆","93" }, {"关欣","85" } } ; int max = 0; int key=0; for(int i = 0 ; i< stu.GetLength(0);i++) { if (Convert.ToInt32(stu[i, 1]) > max) { max = Convert.ToInt32(stu[i, 1]); key = i; } } Console.WriteLine("分数最高的是{0},分数是{1}",stu[key,0],stu[key,1]);查看全部
-
QQ项目查看全部
-
二维数组创建 int[,] arr = new int[2,3]; 引用,初始化 arr[0,0] = 19;查看全部
-
数组的创建 int[] age = new int[100];查看全部
-
优先级相同的运算符从左向右计算(赋值运算符相反)。查看全部
-
+可以是加法可以是连接字符串查看全部
-
变量名不能以数字开头查看全部
举报
0/150
提交
取消