刚学C#,求助!循环问题
short i = 0;             
             int size = 100000;
             string myString = "HelloWorld";
             for (i = 0; i < size; i++)
             {
                 if (i % 10000 == 0) Console.WriteLine(myString);
             }
             Console.ReadLine();
这样的一个循环他为什么是死循环呢?我怎么觉得它应该只输出是个hello world啊?
------解决方案--------------------