LQB2013A02排它平方数
Posted zhmlzhml
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LQB2013A02排它平方数相关的知识,希望对你有一定的参考价值。
这个题方向其实还算好找,就是枚举嘛
(这是一个填空题,所以六个for嵌套也无所谓,因为毕竟emmmm,不看时间)
这里是判断的代码:
需要把数字转化成字符串
void i2s(int x,string &s){//注意是个引用 stringsream ss; ss>>x; ss<<s; } bool check(int x,int xx){ string s_x,s_xx; i2s(x,s_x); i2s(xx,s_xx); for (int i = 0; i < s_x.length(); ++i) { if(s_xx.find(s_x[i])!=string::npos) return false; }
以上是关于LQB2013A02排它平方数的主要内容,如果未能解决你的问题,请参考以下文章