double x,y;
x=y=2;
x/=2;
y&=2;
Console.WriteLine(x-y);
double x,y;
x=y=2;
x/=2;
y-=2;
Console.WriteLine(x-y);
x=y=2;
x/=2;
y&=2;
Console.WriteLine(x-y);
double x,y;
x=y=2;
x/=2;
y-=2;
Console.WriteLine(x-y);
2018-05-16
for (int y = 0; y <= 7; y++)
{
for (int x = 1; x <= 7; x++)
{
if(x<=y)
{
Console.Write(x);
}
}
Console.WriteLine();//换行
{
for (int x = 1; x <= 7; x++)
{
if(x<=y)
{
Console.Write(x);
}
}
Console.WriteLine();//换行
2018-05-15
if (score[i] < 60)//如果有不及格的
{
hasNopass=true;
break;//记录有不及格的
}
{
hasNopass=true;
break;//记录有不及格的
}
2018-05-15