{if (x >= 5)
{ Console.WriteLine("5");
}
}
else
if (y >= 6)
Console.WriteLine("6");
else
Console.WriteLine("7");
}
}
}
{ Console.WriteLine("5");
}
}
else
if (y >= 6)
Console.WriteLine("6");
else
Console.WriteLine("7");
}
}
}
2022-09-29
static void Main(string[] args)
{
for(int i=0;i<7;i++)
{
for(int j=0;j<7;j++)
{
char text = (j==i || j==6-i)?'O':'.';
Console.Write(text);
}
Console.WriteLine();
}
{
for(int i=0;i<7;i++)
{
for(int j=0;j<7;j++)
{
char text = (j==i || j==6-i)?'O':'.';
Console.Write(text);
}
Console.WriteLine();
}
string[,] list = new string[,]{{"吴松","89"},{"钱东宇","90"},{"伏晨","98"},{"陈陆","56"},{"周蕊","60"},{"林日鹏","91"},{"何昆","93"},{"关欣","85"}}; string name = ""; int score = 0;for (int i = 0; i < list.GetLength(0)-1; i++) {if (int.Parse(list[i, 1]) > score) {name = list[i, 0];score = int.Parse(list[i, 1]);}};
string[,] nameScoreArr = new string[4,2]{{"吴松","89"},{"钱东","90"},{"周蕊","98"},{"关欣","78"}};
int maxIndex = 0;
for (int x=1;x<nameScoreArr.GetLongLength(0);x++) {
if (int.Parse(nameScoreArr[x,1]) > int.Parse(nameScoreArr[maxIndex,1])) {
maxIndex = x;
}
}
int maxIndex = 0;
for (int x=1;x<nameScoreArr.GetLongLength(0);x++) {
if (int.Parse(nameScoreArr[x,1]) > int.Parse(nameScoreArr[maxIndex,1])) {
maxIndex = x;
}
}
switch的方法有点简单,应该再详细说明一下,比如case的的语句块{}以及不加语句块的区别,加了语句块 可以申明局部相同的变量等。。
2022-08-24
{ string today;//今天的午饭
string tomorrow;//明天的午饭
string temp;
today = "鱼香肉丝";
tomorrow = "小鸡炖蘑菇";
temp=tomorrow;
tomorrow=today;
today=temp;
//请在这里补充代码,实现变量today和tomorrow的交换
这样子交换是不是不台符合逻辑啊,虽然也成功了
string tomorrow;//明天的午饭
string temp;
today = "鱼香肉丝";
tomorrow = "小鸡炖蘑菇";
temp=tomorrow;
tomorrow=today;
today=temp;
//请在这里补充代码,实现变量today和tomorrow的交换
这样子交换是不是不台符合逻辑啊,虽然也成功了
要注意定义变量之后,要给变量进行赋值,否则会报错:“该变量为局部变量”,还有注意if 语句的包含区域,要把该包含的内容用中括号括起来,注意这些!!
这个可以运行对的
if(money > 100000)
{ }
else
if(money > 50000)
{ }
else
if (money > 10000)
{ }
else
{ }
if(money > 100000)
{ }
else
if(money > 50000)
{ }
else
if (money > 10000)
{ }
else
{ }