我写的明明是对的,但是系统给力- -,,得不到夸奖了
Console.WriteLine(true||false);//输出True
Console.WriteLine(true&&false);//输出False
Console.WriteLine(!(false));//输出True
Console.WriteLine(true||false);//输出True
Console.WriteLine(true&&false);//输出False
Console.WriteLine(!(false));//输出True
2017-08-23
if (score[i] < 60)//如果有不及格的
{
hasNopass=true;
break;//记录有不及格的
}
看到有人在if判断完之后,没有用break中止循环,如果有1000个成绩,或更多,想想要循环多少次
然而实际情况一般都是全部遍历比较好
{
hasNopass=true;
break;//记录有不及格的
}
看到有人在if判断完之后,没有用break中止循环,如果有1000个成绩,或更多,想想要循环多少次
然而实际情况一般都是全部遍历比较好
2017-08-23
case"局长": Console.Write("发双黄月饼"); break;
case"处长": Console.Write("发蛋黄月饼"); break;
case"科长": Console.Write("发枣泥月饼"); break;
defualt: Console.Write("发五仁月饼"); break;
为什么不对? 在VS上跑一遍就知道了,defualt拼写错误,应该是default,所以一款好的编译器很重要
case"处长": Console.Write("发蛋黄月饼"); break;
case"科长": Console.Write("发枣泥月饼"); break;
defualt: Console.Write("发五仁月饼"); break;
为什么不对? 在VS上跑一遍就知道了,defualt拼写错误,应该是default,所以一款好的编译器很重要
2017-08-23
static void Main(string[] args)
{
for (int x=1;x<13;++x)//请填写代码
{
Console.Write(x);
}
}
{
for (int x=1;x<13;++x)//请填写代码
{
Console.Write(x);
}
}
2017-08-23