最新回答 / 慕移动9181930
为什么和英文不好有关系,我也英文不咋滴,不过还能稍微能看懂猜一猜^_^,可能android刚出来的时候手机分辨率还很统一吧,还可以使用绝对布局,随着发展,现在手机屏幕分辨率太多,用他的话会出问题的
2018-04-15
for(int i=0;i<score.Length;i++)
{
if(score[i]>max)
{
max=score[i];
x=i;
}
}
Console.WriteLine("分数最高的是{0},分数是{1}",name[x],score[x]);
{
if(score[i]>max)
{
max=score[i];
x=i;
}
}
Console.WriteLine("分数最高的是{0},分数是{1}",name[x],score[x]);
string[] name=new string[]{"吴松","钱东宇","伏晨","陈陆","周蕊","林日鹏","何昆","关欣"};
int[] score=new int[]{89,90,98,56,60,91,93,85};
int x=0;
int max=0;
int[] score=new int[]{89,90,98,56,60,91,93,85};
int x=0;
int max=0;
namespace Test
{
class Program
{
static void Main(string[] args)
{
int y = 5;
while ( y <=5 && y >= 1 )//请输入
{
Console.Write(y+" ");
y--;//请输入
}
}
}
}
{
class Program
{
static void Main(string[] args)
{
int y = 5;
while ( y <=5 && y >= 1 )//请输入
{
Console.Write(y+" ");
y--;//请输入
}
}
}
}
2018-04-14
string[] name ={"吴松","钱东宇","伏晨","陈陆","周蕊","林日鹏","何昆","关欣"};
int[] score = {89,90,98,56,60,91,93,85};
for (int i=1;i<score.Length;i++)
{
if (score[0]<score[i])
{
score[0]=score[i];
name[0]=name[i]
}
int[] score = {89,90,98,56,60,91,93,85};
for (int i=1;i<score.Length;i++)
{
if (score[0]<score[i])
{
score[0]=score[i];
name[0]=name[i]
}