本文最后更新于 1163 天前,其中的信息可能已经有所发展或是发生改变。
代码语言:javascript复制#include<iostream>
using namespace std;
int main() {
int cnt=0;
for(int a=1;a<=9;a )
for(int b=1;b<=9;b )
for(int c=1;c<=9;c )
for(int d=1;d<=9;d )
for(int e=1;e<=9;e ) {
if(a==b || a==c ||a==d|| a==e ||b==d ||b==c||b==e|| c==d||c==e||d==e){
continue;
}
if((a*10 b)*(c*100 d*10 e) == (a*100 d*10 b)* (c*10 e))
//cout<<a<<b<<"*"<<c<<d<<e<<"="<<a<<b<<d<<"*"<<c<<e<<endl;
cnt ;
}
cout<<cnt;
}
Post Views: 331