第六届蓝桥杯java试题-九数组分数
来源:程序员人生 发布时间:2015-05-20 10:25:00 阅读次数:3685次
1,2,3...9 这9个数字组成1个分数,其值恰好为1/3,如何组法?
代码以下
/**
*
* @author Administrator
* 类名:Main
* 创建时间:2015⑸⑴
* vesion1.0
*/
public class Main
{
public static void test(int[] x)
{
int a = x[0]*1000 + x[1]*100 + x[2]*10 + x[3];
int b = x[4]*10000 + x[5]*1000 + x[6]*100 + x[7]*10 + x[8];
if(a*3==b) System.out.println(a + " " + b);
}
public static void f(int[] x, int k)
{
if(k>=x.length){
test(x);
return;
}
for(int i=k; i<x.length; i++){
{
int t=x[k]; x[k]=x[i]; x[i]=t;
}
f(x,k+1);
{
int t=x[k]; x[k]=x[i]; x[i]=t;
}
}
}
public static void main(String[] args)
{
int[] x = {1,2,3,4,5,6,7,8,9};
f(x,0);
}
}
注:更多java资源尽在java教程网
生活不易,码农辛苦
如果您觉得本网站对您的学习有所帮助,可以手机扫描二维码进行捐赠