A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

<div class="blockcode"><blockquote>
public class FengSeven {
/*
* 3.100以内 逢7的数 去掉
*/
        public static void main(String[] args) {
                int count=0;
                for (int i = 0; i < 100; i++) {
                        int ge = i%10;
                        int shi = i/10;
                       
                        if (ge ==7 || shi==7) {
                                continue;
                        }else{
                                System.out.print(i+" ");
                                count++;
                                if(count == 10){
                                        System.out.println("\t");
                                        count = 0;
                                }
                        }               
                }               
        }
}
</blockquote></div><br />

2 个回复

倒序浏览
不错啊,楼主,不过这个代码稍微改动一下,就完美啦,

  1. /**
  2. * 100以内的数逢7去掉,并输出
  3. * @author Administrator
  4. *
  5. */
  6. public class Test01 {

  7.         public static void main(String[] args) {
  8.                 int count = 0;
  9.                 for (int i = 0; i < 100; i++) {
  10.                         int ge = i % 10;
  11.                         int shi = i / 10;

  12.                         if (ge == 7 || shi == 7) {
  13.                                 continue;
  14.                         } else {
  15.                                 System.out.print(i + "\t");
  16.                                 count++;
  17.                                 if (count % 10 == 0) {
  18.                                         System.out.println();

  19.                                 }
  20.                         }
  21.                 }
  22.         }
  23. }
复制代码
回复 使用道具 举报
不错,写的很规范
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马