与谜题26和27中的程序一样,下面的程序有一个单重的循环,它记录迭代的次数,并在循环终止时打印这个数。那么,这个程序会打印什么呢?
class Count
{
static void Main()
{
const int START = 2000000000;
int count = 0;
for (float f = START; f < START + 50; f++)
count++;
System.Console.WriteLine(count);
}
}
C#解惑总目录
class Count
{
static void Main()
{
const int START = 2000000000;
int count = 0;
for (float f = START; f < START + 50; f++)
count++;
System.Console.WriteLine(count);
}
}
C#解惑总目录