蓝桥杯省赛-三羊献瑞
作者:互联网
题目描述
观察下面的加法算式:
其中,相同的汉字代表相同的数字,不同的汉字代表不同的数字。
请你填写“三羊献瑞”所代表的4位数字(答案唯一),不要填写任何多余内容。
输出
请你填写“三羊献瑞”所代表的4位数字(答案唯一),不要填写任何多余内容。#include<iostream> using namespace std; int main() { for(int a=1;a<=9;a++) { for(int b=0;b<=9;b++) { if(b!=a) { for(int c=0;c<=9;c++) { if(c!=a&&c!=b) { for(int d=0;d<=9;d++) { if(d!=c&&d!=b&&d!=a) { for(int e=1;e<=9;e++) { if(e!=a&&e!=b&&e!=c&&e!=d) { for(int f=0;f<=9;f++) { if(f!=a&&f!=b&&f!=c&&f!=d&&f!=e) { for(int g=0;g<=9;g++) { if(g!=a&&g!=b&&g!=c&&g!=d&&g!=e&&g!=f) { for(int h=0;h<=9;h++) { if(h!=a&&h!=b&&h!=c&&h!=d&&h!=e&&h!=f&&h!=g) if((a*1000+b*100+c*10+d)+(e*1000+f*100+g*10+b)==e*10000+f*1000+c*100+b*10+h) cout<<e<<f<<g<<b<<endl; } } } } } } } } } } } } } } return 0; }
标签:代表,数字,int,蓝桥,三羊,献瑞,省赛,填写 来源: https://www.cnblogs.com/chen-kaige/p/14654875.html