设计一个方法, 取名叫getCount用来计算出1-100之间有多少能被3整除,要求有返回值,并把结果打印在控制台上.
- class Demo
- {
- public static void main(String[] args)
- {
- getCount();
- System.out.println(getCount());
- }
- public static int getCount() //题目没看清楚,输出次数
- {
- for(int x=1;x<=100;x++)
- {
- if(x%3==0)
- {
-
- return x; //返回值应该在循环以外函数中
- }
-
- }
- }
- }
复制代码
改正后
- class Demo
- {
- public static void main(String[] args)
- {
- getCount();
- System.out.println(getCount());
- }
- public static int getCount()
- { int a=0;
- for(int x=1;x<=100;x++)
- {
- if(x%3==0)
- {
- //System.out.println(x); 不需输出,只需输出次数
- a++;
- }
- }
- return a;
- }
- }
复制代码 |
|