package com.itheima;
/*
* @author 任黎明
* 8、 编写程序,打印1到100之内的整数,但数字中包含7的要跳过,例如:17、27、71、72
* */
public class Test8
{
public static void main(String[] args)
{
for(int x=1;x<=100;x++)
{
if(!(x%10==7||((x-x%10)/10)==7))
{
if(x<100)
System.out.print(x+",");
else
System.out.print(x);
}
}
}
}
|
|