for (int y = 1; y <= 7; y++)
{
for (int x = 1; x <= 7; x++)
{
Console.Write(x);
if(x>=y)
break;
}
Console.WriteLine();//换行
}
{
for (int x = 1; x <= 7; x++)
{
Console.Write(x);
if(x>=y)
break;
}
Console.WriteLine();//换行
}
2018-10-14
int//(int or double) 变量 = (int)d
会将变量转换为无小数点数,直接去掉小数点后的数,无需四舍五入。
会将变量转换为无小数点数,直接去掉小数点后的数,无需四舍五入。
2018-10-10
static void Main(string[] args)
{
int year = 2015;//年份
string text;
text=year%4==0?"闰年":"平年";//请填写代码
Console.WriteLine("今年是{0}",text);
}
{
int year = 2015;//年份
string text;
text=year%4==0?"闰年":"平年";//请填写代码
Console.WriteLine("今年是{0}",text);
}
2018-10-09
static void Main(string[] args)
{
int y = 5;
while (y<6&&y>0)//请输入
{
Console.Write(y+" ");
y--;//请输入
}
}
{
int y = 5;
while (y<6&&y>0)//请输入
{
Console.Write(y+" ");
y--;//请输入
}
}
2018-10-09
int x=1;
bool a = ++x * x > 3; //2>3
bool b = a; //能使b等a这样的'2>3'就好
Console.WriteLine(a==b);
看来刚刚想多又想偏了。。。。。
bool a = ++x * x > 3; //2>3
bool b = a; //能使b等a这样的'2>3'就好
Console.WriteLine(a==b);
看来刚刚想多又想偏了。。。。。
2018-10-08