为什么不可以
using System;
using System.Collections.Generic;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
int y = 5;
while (y<=5&&y>=1)//请输入
{
Console.Write(y+" ");
y--;//请输入
}
}
}
}
using System;
using System.Collections.Generic;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
int y = 5;
while (y<=5&&y>=1)//请输入
{
Console.Write(y+" ");
y--;//请输入
}
}
}
}
2016-07-02
举报