public static int myFindABC(){int total = 0;
int sum = 0;
//HashMaphashMap = new HashMap<>();
for (int i=100;i<999;i++){int a = i/100;//百位
int b = i%100/10;//十位
int c = i%100%10;//個位
if(a==b||b==c||a==c){continue;
}
for (int j=999;j>99&&i+j<10000&&i+j>999;j--){// if(j// break;
// }
int a2 = j/100;//百位
int b2 = j%100/10;//十位
int c2 = j%100%10;//個位
if(a2==b2||b2==c2||a2==c2||a2==a||a2==b||a2==c||b2==a||b2==b||b2==c||c2==a||c2==b||c2==c){continue;
}
//if(i+j>999&&i+j<10000){sum = i+j;
int a3 = sum/1000;
int b3 = sum%1000/100;
int c3 = sum%100/10;
int d3 = sum%100%10;
if(a3==b3||a3==c3||a3==d3||b3==c3||b3==d3||c3==d3||
a3==a||a3==b||a3==c||a3==a2||a3==b2||a3==c2||
b3==a||b3==b||b3==c||b3==a2||b3==b2||b3==c2||
c3==a||c3==b||c3==c||c3==a2||c3==b2||c3==c2||
d3==a||d3==b||d3==c||d3==a2||d3==b2||d3==c2
){continue;
}
System.out.print(i+" + "+j+" = "+sum);
total ++;
System.out.println();
}
}
return total;
}
測試方法:
public static void main(String[] args) {System.out.println(myFindABC());
}
C++實現(xiàn)#include#includeusing namespace std;
int s[10];
bool get_Clength(int x)
{int leng=0;
int d = 0;
while(x)
{d = x % 10;
x /= 10;
if(s[d] == 0){s[d] = 1;
}else{break;
}
leng++;
}
if(leng != 4){return false;
}
return true;
}
bool get_ABlength(int x)
{int leng=0;
int d = 0;
while(x)
{d = x % 10;
x /= 10;
if(s[d] == 0){s[d] = 1;
}else{break;
}
leng++;
}
if(leng != 3){return false;
}
return true;
}
int main(){int total = 0;
for(int i = 100; i< 1000; i ++){
for(int j = 1000 - i; j< 1000; j ++){memset(s, 0, sizeof(s));
if (get_ABlength(i) && get_ABlength(j) && get_Clength(i + j)){printf("%d + %d = %d\n", i, j, i + j);
total++;
}
}
}
cout<<"total number:"<
int s[10]用來確定數(shù)字處于0到9之間不重復
確保C是四位數(shù),并且b是三位數(shù),所以j從1000-i到1000
你是否還在尋找穩(wěn)定的海外服務器提供商?創(chuàng)新互聯(lián)www.cdcxhl.cn海外機房具備T級流量清洗系統(tǒng)配攻擊溯源,準確流量調(diào)度確保服務器高可用性,企業(yè)級服務器適合批量采購,新人活動首月15元起,快前往官網(wǎng)查看詳情吧
網(wǎng)站欄目:數(shù)據(jù)結(jié)構(gòu)---填數(shù)字-創(chuàng)新互聯(lián)
網(wǎng)站路徑:http://jinyejixie.com/article12/ccesdc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供企業(yè)網(wǎng)站制作、營銷型網(wǎng)站建設(shè)、動態(tài)網(wǎng)站、電子商務、App設(shè)計、網(wǎng)站營銷
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容