注意:下面的评论中 数组string[,] score = new string[,]{ }中元素没有写,还有打印语句Console.WriteLine("分数最高的是{0},分数是{1}",name,max);没写,因为评论写不下了。
2015-10-12
string[,] score = new string[,]{ }
int max = Convert.ToInt32(score[0, 1]);
string name = null ;
for (int i = 0; i < score.GetLongLength(1); i++)
{ if (Convert.ToInt32(score[i, 1]) > max)
{max = Convert.ToInt32(score[i, 1]);
name = score[i, 0]; }}
int max = Convert.ToInt32(score[0, 1]);
string name = null ;
for (int i = 0; i < score.GetLongLength(1); i++)
{ if (Convert.ToInt32(score[i, 1]) > max)
{max = Convert.ToInt32(score[i, 1]);
name = score[i, 0]; }}
2015-10-12
static void Main(string[] args)
{
Console.Write("请输入一个整数");
int y=int.Parse(Console.ReadLine());//百度一下,这个好像是输入一个整数的标准格式?
if(y<5)
Console.Write("输入有误!");
else
{while(y>5)
{
y-- ;
}
while (y>=1)
{
Console.Write(y+" ");y--;
}
}
}
{
Console.Write("请输入一个整数");
int y=int.Parse(Console.ReadLine());//百度一下,这个好像是输入一个整数的标准格式?
if(y<5)
Console.Write("输入有误!");
else
{while(y>5)
{
y-- ;
}
while (y>=1)
{
Console.Write(y+" ");y--;
}
}
}
2015-10-12
namespace Test
{
class Program
{
static void Main(string[] args)
{
int y = 5;
while (y>=1&&y<=5)
{
Console.Write(y+" ");
y--;
}
}
}
}
{
class Program
{
static void Main(string[] args)
{
int y = 5;
while (y>=1&&y<=5)
{
Console.Write(y+" ");
y--;
}
}
}
}
2015-10-12