EXQ ME?
class Program
{
static void Main(string[] args)
{
int x = 5;
int y = 5;
int z = 5;
x++;
Console.Write(x);
Console.Write(++y);
Console.Write(++z);
}
}
}/*
为啥你们的那么麻烦?
*/
class Program
{
static void Main(string[] args)
{
int x = 5;
int y = 5;
int z = 5;
x++;
Console.Write(x);
Console.Write(++y);
Console.Write(++z);
}
}
}/*
为啥你们的那么麻烦?
*/
2016-08-25
int w = 1;int e = 7;
for (int x=1;x<=7;x++)
{
for (int y=1;y<=7;y++)
{
if( y==w||y==e)
Console.Write("0");
else
Console.Write(".");
}
w++;
e--;
Console.WriteLine();
for (int x=1;x<=7;x++)
{
for (int y=1;y<=7;y++)
{
if( y==w||y==e)
Console.Write("0");
else
Console.Write(".");
}
w++;
e--;
Console.WriteLine();
VS上可以运行
int c = 1;
for (int y = 1; y <= 7; y++)
{
for (int x = 1; x <= 7; x++)
{
Console.Write(x);
if (x == c)
break;
}
c++;
Console.WriteLine();//换行
}
int c = 1;
for (int y = 1; y <= 7; y++)
{
for (int x = 1; x <= 7; x++)
{
Console.Write(x);
if (x == c)
break;
}
c++;
Console.WriteLine();//换行
}
2016-08-23
if(money >=100000){ Console.WriteLine("送一台微波炉");}
else if(money <100000 && money >=50000){Console.WriteLine("送一套茶具");}
else if(money < 50000 && money >=10000){Console.WriteLine("送一袋大米");}
else if(money <10000){Console.WriteLine("没有礼品");}
else if(money <100000 && money >=50000){Console.WriteLine("送一套茶具");}
else if(money < 50000 && money >=10000){Console.WriteLine("送一袋大米");}
else if(money <10000){Console.WriteLine("没有礼品");}
已采纳回答 / 爱吃小鸭梨
第一可能和你的网有问题。第二可能是因为服务器访问人数过多。第三就是,慕课网这个的确有点慢。。。不过平台还是不错的,要是不故意为难抠一些小地方让人半天找不到为什么还是错了就好了
2016-08-21
最新回答 / Leo_nard
不减一不会越界,因为索引的起始为0,0对应数组中的第一个元素,索引为score.length的数组元素越界,但是因为i<score.Length,所以刚好将数组所有元素循环。
2016-08-21