f0613.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:1k
源码类别:

C#编程

开发平台:

Visual C++

  1. //==================================
  2. // f0613.cpp
  3. // 判断字串相等版本二
  4. //==================================
  5. #include<iostream>
  6. #include<fstream>
  7. #include<algorithm>
  8. using namespace std;
  9. //----------------------------------
  10. int main(){
  11.   ifstream in("string.txt");
  12.   for(string s,t; in>>s>>t; ){
  13.     int sc1=count(s.begin(), s.end(),'1');
  14.     int sc0=count(s.begin(), s.end(),'0');
  15.     int tc1=count(t.begin(), t.end(),'1');
  16.     int tc0=count(t.begin(), t.end(),'0');
  17.     cout<<(sc1==tc1 && sc0==tc0 ? "yesn" : "non");
  18.   }
  19. }//=================================
  20.