Re: [問題] 1-9位數不重複印出來 (Java)已刪文

看板Programming作者 (Neisseria)時間8年前 (2016/12/07 07:48), 8年前編輯推噓0(001)
留言1則, 1人參與, 最新討論串1/1
Java 反而沒人想用? import java.util.Scanner; import java.util.regex.Pattern; import java.util.regex.Matcher; public class Nine { public static void main(String[] args) { System.out.print("Please input a number: "); Scanner reader = new Scanner(System.in); int n = reader.nextInt(); String pattern = "(\\d).*\\1"; Pattern r = Pattern.compile(pattern); int count = 1; for (int i = 0; i < (int) Math.pow(10, n); i++) { Matcher m = r.matcher(String.valueOf(i)); if (!m.find()) { System.out.printf("%d ", i); count++; } if (count % 10 == 0) { System.out.println(""); } } System.out.println(""); } } ※ 引述《mikemagic88 (Mikemagic88)》之銘言: : 使用者輸入1 印1-9 : 使用者輸入2 印1-98 (11, 22, 33等重複的不印) : 使用者輸入3 印1-987 (121, 988, 667等有重複的不印) -- ※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 175.180.193.126 ※ 文章網址: https://www.ptt.cc/bbs/Programming/M.1481068094.A.FD0.html ※ 編輯: Neisseria (175.180.193.126), 12/07/2016 07:49:56

12/07 08:46, , 1F
因為原po就是用java
12/07 08:46, 1F
沒看到,冏rz ※ 編輯: Neisseria (125.227.36.80), 12/07/2016 10:17:55
文章代碼(AID): #1OHqu-_G (Programming)
文章代碼(AID): #1OHqu-_G (Programming)