最新回答 / 慕粉4364288
y就是指我们定义的变量y的值, +号的作用是连接字符,这里连接了后面双引号里面内容,是一个空格,这样每输出一次y的值也要输出一个空格,这样就把输出的每个数字都隔开了(5 4 3 2 1)不然他们就会连在一起(54321)这样子。不好意思,刚刚打成x了。
2018-04-11
for (int y = 1; y <= 7; y++)
{
for (int x = 1; x <= y; x++)
//*第一行,y为1,x只循环一次,只为1,
//*第二行,y为2,x只循环二次,为12.
//*以此类推。。。
{ Console.Write(x); }
Console.WriteLine();
{
for (int x = 1; x <= y; x++)
//*第一行,y为1,x只循环一次,只为1,
//*第二行,y为2,x只循环二次,为12.
//*以此类推。。。
{ Console.Write(x); }
Console.WriteLine();
2018-04-10
最赞回答 / 万言千谎
for(int x=1;x<=7;x++)//循环行数 { for(int dot=1;dot<=7;dot++)//循环位数(位置从左到右为1234567) { if (dot == x || dot == (8 - x))//判定位置,因为0为对称位置,即8(最大位数)减当前位置可以得到之后位置。举个例子,第一行第一...
2018-04-10
static void Main(string[] args)
{
int x;//循环计数变量
x=0;//行① 请填写计数变量的初始化语句
while (x<5)//行② 请填写循环条件
{
Console.Write("加油!");
++;//行③ 请填写计数变量的自加语句
}
}
{
int x;//循环计数变量
x=0;//行① 请填写计数变量的初始化语句
while (x<5)//行② 请填写循环条件
{
Console.Write("加油!");
++;//行③ 请填写计数变量的自加语句
}
}
namespace Test
{
class Program
{
static void Main(string[] args)
{
int y = 5;
while (y!=0)//请输入
{
Console.Write(y+" ");
y--;//请输入
}
}
}
}
{
class Program
{
static void Main(string[] args)
{
int y = 5;
while (y!=0)//请输入
{
Console.Write(y+" ");
y--;//请输入
}
}
}
}
2018-04-09
最新回答 / 睿智狂人
namespace Test{ class Program { static void Main(string[] args) { for (int y = 1; y <= 7; y++) { for (int x = 1; x <= 7; x++) { if(x <= y) ...
2018-04-09