Why?迷惑?
using System;class sushu
{
static void Main()
{
int i=2;
int count=0;
while (i<1000)
{
int j=2;
double si=Math.Sqrt(i);
bool flag=false;
while(j<si)
{
if(i%j!=0)
{
j++;
}
else
{
flag=true;
break;
}
}
if(flag==false)
{
Console.Write("\0{0}",i);
count++;
}//(1)
if(count%10==0)
{//(2)
Console.WriteLine();
}
i++;
}
Console.ReadLine();
}
}
为什么把(1)(2)处的括号删去,输出的结果很不匀称,why?