class Demo222
{
public static void main(String[] args)
{
System.out.println(getCount(100));
}
public static int getCount(int a )
{
int x=1;
int count=0;
while(x<=a)
{
if(x%3==0)
{
System.out.print(x);
count++;
}
x++;
}
System.out.println();
return count;
}
}
你的代码打印出来最后一个值33 是count 没换行 容易被误解,所以加个换行语句。
|