黑马程序员----基础题----我的基础题



------Java培训、Android培训、iOS培训、.Net培训、期待与您交流! -------


     黑马基础测试题        第六题


package com.itheima;
/**
 *       第六题
 *
 *          编写程序,打印1到100之内的整数,但数字中包含7的要跳过,例如:17、27、71、72
 *
 *          分析:
 *             1.定义变量,初始化
 *             2.for循环遍历100
 *             3.if判断
 *             4.输出
 *
 */
public class Test6 {
     public static void main(String[] args) {
          //初始化变量
          int x =0;
          //循环遍历100之内的数
          for(x = 0; x<100 ; x++){
                //判断数字中是否包含7
                if(x%10!=7 && x/10!=7){
                System.out.println(x);
                }
          }
    }
}

你可能感兴趣的:(黑马基础题)