java吧 关注:1,228,876贴子:12,688,059
  • 9回复贴,共1
输出100以内所有能被5整除的数
package a;
public class zhengchu
{
public static void main(String[] args)
{
zhengchu a=new zhengchu();
System.out.println(zhengchu.b(0));
}
public static int b(int ai)
{
int[]a1=new int[100];
for(ai=0;ai<=a1.length;ai++)
if(ai%5==0)
return ai;
}
PS:老师要求用class编写


IP属地:北京1楼2016-11-25 13:14回复
    为什么运行不了求答案
    ——十五字十五字十五字十五字十五字


    IP属地:北京2楼2016-11-25 13:16
    回复
      人生便如一块香料,是只有在坚持的信念为柴,坚守的行动为火炙烤中才能散发出最浓郁的芬芳。


      IP属地:安徽来自Android客户端4楼2016-11-25 13:25
      回复
        什么叫做用class编写


        5楼2016-11-25 13:40
        收起回复
          你写个静态方法,用面向对象调?


          IP属地:安徽来自iPhone客户端8楼2016-11-25 13:49
          回复
            1.如果是静态方法,主函数里直接调用就行了,不用new 了。
            2.方法b 声明返回 int ,方法里却可能没有返回,或返回多个……
            public class test {
            public static void main(String[] args) {
            test test = new test();
            test.zhengChu();
            }
            public void zhengChu(){
            for(int i=0;i<=100;i++){
            if(i%5==0){
            System.out.println(i);
            }
            }
            }
            }


            IP属地:辽宁9楼2016-11-25 13:55
            回复