码迷,mamicode.com
首页 > 其他好文 > 详细

排列数字

时间:2014-08-08 17:51:46      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   for   ar   div   amp   

public class Division {
    public static void main(String[] args){
        int count = 1;
        for(int number = 100;number <= 1000;number++){
            if(number % 5 == 0 && number % 6 == 0){
                if(count % 10 ==0){
                    System.out.println(number + "  ");
                    count++;
                }
                else{
                    System.out.print(number + "  ");
                    count++;
                }
            }
        }
    }

}

编写程序,显示从100到1000之间所有能被5和6整除的数,每行显示10个

排列数字,布布扣,bubuko.com

排列数字

标签:style   blog   color   io   for   ar   div   amp   

原文地址:http://www.cnblogs.com/Amoxicil/p/3899597.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!