用while或for循环输出1~1000之间能被5整除的数,并且每行输出3个

用while或for循环输出1~1000之间能被5整除的数,并且每行输出3个

package Structure;
public class ForDemo03 {
    public static void main(String[] args) {
        for (int i = 0; i <= 1000; i++) {
            if (i%5==0) {
                System.out.print(i + "\t");
            }
                if(i%(5*3)==0){//每行
                    System.out.println();//换行
                  //  System.out.println("\n");//换行
                }
            }
        //println 输出完会换行
        //print   输出完不会换行
            }
        }



posted @ 2021-03-30 17:01  木子WX  阅读(311)  评论(0编辑  收藏  举报