标签:java
/**4
* 有1,2,3,4四個數字,
* 能夠組成多少個互不相同的三位數
* 分別是多少
**/
public class Test{ public static void main(String[] args){ for (int i = 1; i < 5; i++) { for (int j = 1; j < 5; j++) { for (int k = 1; k < 5; k++) { System.out.print(i); System.out.print(j); System.out.print(k); System.out.print(" "); } System.out.println(); } System.out.println(); } } }
本文出自 “hacker” 博客,请务必保留此出处http://anglecode.blog.51cto.com/5628271/1619885
标签:java
原文地址:http://anglecode.blog.51cto.com/5628271/1619885