码迷,mamicode.com
首页 > 其他好文 > 详细

比较两个字符串是否完全不重复(没有一个字符相同)

时间:2020-04-03 20:10:46      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:highlight   mes   end   asi   check   stream   一个   void   npos   

#include <iostream>
#include <stdlib.h>
#include <math.h>
#include <sstream>
using namespace std;

void i2s(int x, string &basic_string) {
    stringstream ss;
    ss << x;
    ss >> basic_string;
}

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]) != s_xx.npos) {
            return false;
        }
    }
    return true;
}


int main(){
	int x ,x2 ,x3;
	string sx2 , sx3;
	for(x=40 ; x<100;++x){
		x2 = x*x; x3=x*x*x;
		if(check (x2,x3)){
			cout<<x<<"  "<<x2<<"  "<<x3<<endl;	
		}
		
	}
	
	
	return 0 ;
}

  

比较两个字符串是否完全不重复(没有一个字符相同)

标签:highlight   mes   end   asi   check   stream   一个   void   npos   

原文地址:https://www.cnblogs.com/Stephen-Jixing/p/12628331.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!