for (int i = 0; i < 7; i++)
{
for (int j = 0; j < 7; j++ )
{
if (i == j || i + j == 6) {
Console.Write("o");
} else {
Console.Write(".");
}
}
Console.WriteLine();
}
哪位大神能翻译下这段代码的意思
{
for (int j = 0; j < 7; j++ )
{
if (i == j || i + j == 6) {
Console.Write("o");
} else {
Console.Write(".");
}
}
Console.WriteLine();
}
哪位大神能翻译下这段代码的意思
if (x >= y)
{if (x >= 5)
Console.WriteLine("5");}
else
if (y >= 6)
Console.WriteLine("6");
else
Console.WriteLine("7");
}
}
}
{if (x >= 5)
Console.WriteLine("5");}
else
if (y >= 6)
Console.WriteLine("6");
else
Console.WriteLine("7");
}
}
}
2017-08-07
string[,] num=new string[,]{{"吴松","89"},{"钱东宇","90"}......};
int a=0;//用于输出分数最高的姓名
int max=int.Parse(num[0,1]);//用于输出最高分数
for(int i=0;i<num.GetLongLength(0);i++){
if(int.Parse(num[i,1])>max){max=int.Parse(num[i,1]);a=i;}
}Console.WriteLine("分数最高的是"+num[a,0]+","+"分数是"+max);
int a=0;//用于输出分数最高的姓名
int max=int.Parse(num[0,1]);//用于输出最高分数
for(int i=0;i<num.GetLongLength(0);i++){
if(int.Parse(num[i,1])>max){max=int.Parse(num[i,1]);a=i;}
}Console.WriteLine("分数最高的是"+num[a,0]+","+"分数是"+max);
Console.WriteLine("{0}{1}{2}",ch[1,1],ch[1,2],ch[2,0]);
2017-08-07
for (int x = 1; x < 10; x++)
{
if (x ==3 || x==8)
continue;
//请添加代码,过滤3和8
Console.Write(x);
}
太简单了直接发代码:
{
if (x ==3 || x==8)
continue;
//请添加代码,过滤3和8
Console.Write(x);
}
太简单了直接发代码:
2017-08-05
int x = 2;
do
{
x++;
Console.Write(x+" ");
}
while(x>2&&x<=4);
额,其实这个我也不会,不过看了下评论就清晰了,他先自加2+1=3然后输出3 接着判断由于x=3满足while的两个条件所以为true继续循环,得出4,输出,判断,继续循环,得出5,输出,判断false
中断循环。
do
{
x++;
Console.Write(x+" ");
}
while(x>2&&x<=4);
额,其实这个我也不会,不过看了下评论就清晰了,他先自加2+1=3然后输出3 接着判断由于x=3满足while的两个条件所以为true继续循环,得出4,输出,判断,继续循环,得出5,输出,判断false
中断循环。
2017-08-05
for (int x=1;x<=12 ; ++x )//请填写代码
{
Console.Write(x+" ");
}
以上为正确代码,x+“ ”引号可以无视,但是line必须删掉,因为他要求横向输出,不能换行!
{
Console.Write(x+" ");
}
以上为正确代码,x+“ ”引号可以无视,但是line必须删掉,因为他要求横向输出,不能换行!
2017-08-05