码迷,mamicode.com
首页 > 其他好文 > 详细

用123456789,建3个3位数,数值比为1:2:3

时间:2014-10-10 14:33:04      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:ar   for   ef   as   har   return   class   print   public   

public class mylin {

/**
* @param args
*/
public static void main(String[] args) {
int n1 = 0;
int n2 = 0;
for (int i = 123; i <= 987; i++) {
n1 = i * 2;
n2 = i * 3;
if (isOK(i, n1,n2)) {
System.out.println("i:" + i + " n1:" + n1 + " n2:" + n2);
// break;
}
}
}
public static boolean isOK(int i,int n1,int n2){
String str = "123456789";
String s = i+""+n1+""+n2;
int index = 0;
String str1 = "";
for(int k =0;k<str.length();k++){
index = s.indexOf(str.charAt(k));
if(index>=0){
str1 = s.replaceFirst(str.charAt(k)+"", "a");
s = str1;
}
}
String s1 = s.replaceAll("a", "");
if(s1.length()==0){
return true;
}
return false;
}
}

用123456789,建3个3位数,数值比为1:2:3

标签:ar   for   ef   as   har   return   class   print   public   

原文地址:http://www.cnblogs.com/linth/p/4015425.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!