问答详情
源自:4-1 C#循环流程图和while循环

??????哪错了

namespace Test {    class Program    {        static void Main(string[] args)        {            int y = 5;            while (y=5;y>=1;y--)//请输入            {                Console.Write(y+" ");                Console.ReadLine()//请输入            }        }    } } 哪错了??????

提问者:3217142 2016-01-18 16:03

个回答

  • 努力提升
    2016-01-18 16:22:14

    namespace Test
    {
        class Program
        {
            static void Main(string[] args)
            {
                int y = 5;
                while (y >= 1)//请输入
                {
                    Console.Write(y+" ");
                   y--; //请输入
                }
            }
        }
    }

    你的while循环写错了,你写的那个循环条件是for循环的