- /**
- *
- * 编写程序,打印1到100之内的整数,但数字中包含7的要跳过,例如:17、27、71、72
- *
- * @author sman@mnxnm.com
- *
- */
- public class 打印不包含特定数字的整数 {
- public static void main(String[] args) {
-
- int numMax = 100, numOut = 7;
-
- String strOut = String.valueOf(numOut);
- for (int i = 1; i <= numMax; i++) {
- String str = Integer.toString(i);
- if (!str.contains(strOut)) {
- System.out.println(i + " ");
- }
- }
- }
- }
复制代码 |