for (int x = 1; x <= 7; x++)
{
for (int y = 1; y <=x;y++)
{
Console.Write(y);
}
Console.WriteLine();
}
这是我的,然而并没有什么软用
{
for (int y = 1; y <=x;y++)
{
Console.Write(y);
}
Console.WriteLine();
}
这是我的,然而并没有什么软用
2016-06-19
if(money>100000)//请在这里补充多重条件判断
{
Console.WriteLine("一台微波炉");
}
else if(money<100000||money>50000)
{
Console.WriteLine("一套茶具") ;
}
else if(money<50000||money>10000)
{
Console.WriteLine("一袋大米") ;
}
else
Console.WriteLine("穷逼还想要赠品?") ;
{
Console.WriteLine("一台微波炉");
}
else if(money<100000||money>50000)
{
Console.WriteLine("一套茶具") ;
}
else if(money<50000||money>10000)
{
Console.WriteLine("一袋大米") ;
}
else
Console.WriteLine("穷逼还想要赠品?") ;
if(price<salary)
{
Console.WriteLine("这月可以买手机!");
}
else
{
Console.WriteLine("老子信了你的邪");
}
这些题还得到VS上试试 这里有毒!
{
Console.WriteLine("这月可以买手机!");
}
else
{
Console.WriteLine("老子信了你的邪");
}
这些题还得到VS上试试 这里有毒!
int score = 96;//分数
if(score>95) //判断
{//分支1
Console.WriteLine("奖励一辆自行车");
}
else
Console.WriteLine("qusiba");
呵呵哒 提交不了
if(score>95) //判断
{//分支1
Console.WriteLine("奖励一辆自行车");
}
else
Console.WriteLine("qusiba");
呵呵哒 提交不了
2016-06-17
for (int y = 1; y <= 7; y++)
{
for (int x = 1; x <=y; x++)
{
Console.Write(x);
}
// Console.WriteLine();//换行
}
这样能过,换行反而过不了
{
for (int x = 1; x <=y; x++)
{
Console.Write(x);
}
// Console.WriteLine();//换行
}
这样能过,换行反而过不了
2016-06-16