if(x%2==0)//判断是否为偶数
break;//添加关键字break或continue
Console.Write(x);
题意没错。
break;//添加关键字break或continue
Console.Write(x);
题意没错。
2016-04-25
static void Main(string[] args)
{
int year = 2004;//年份
string text = year % 4 == 0 && year % 100 != 0 || year % 400 == 0 ? "闰年" : "不是闰年";//请填写代码
Console.WriteLine("今年是{0}", text);
}
{
int year = 2004;//年份
string text = year % 4 == 0 && year % 100 != 0 || year % 400 == 0 ? "闰年" : "不是闰年";//请填写代码
Console.WriteLine("今年是{0}", text);
}
2016-04-25
已采纳回答 / sahfakhfakshf
Console.WriteLine("我的工资奖金总额是"+(salary+prize)+"元");Console.WriteLine("我的税后收入是"+(salary+prize-tax)+"元");你这样写试试,如果这也有错的话就是变量的问题,你可以一句句输出测试,最有可能是(salary+prize-tax)这里有问题,实在不行贴代码。
2016-04-24
string[] ns={"吴松", "钱东宇", "伏晨", "陈陆", "周蕾", "林日鹏", "何昆", "关欣"};
int[] ss={89,90,98,56,60,91,93,85};
int pos=0;
for(int i=0; i<ss.Length; ++i)
{
if(ss[pos]<ss[i]) pos=i;
}
Console.Write("分数最高的是"+ns[pos]+",分数是{0}",ss[pos]);
int[] ss={89,90,98,56,60,91,93,85};
int pos=0;
for(int i=0; i<ss.Length; ++i)
{
if(ss[pos]<ss[i]) pos=i;
}
Console.Write("分数最高的是"+ns[pos]+",分数是{0}",ss[pos]);
namespace Test
{
class Program
{
static void Main(string[] args)
{
int age = 4;//年龄
if (age < 6||age > 60)
Console.WriteLine("请坐爱心座!");
else
Console.WriteLine("请坚持一下!");
}
}
}
{
class Program
{
static void Main(string[] args)
{
int age = 4;//年龄
if (age < 6||age > 60)
Console.WriteLine("请坐爱心座!");
else
Console.WriteLine("请坚持一下!");
}
}
}
2016-04-23