标签:clu nbsp 格式 次数 结果 long using pre size
I THIS IS A TEST i ng this is a long test string #
I 2 i 3 5 n 2 g 2
#include<iostream> #include<string> using namespace std; int main(){ string a,b; while(getline(cin,a)){ if(a=="#") break; getline(cin,b); for(int i=0;i<a.length();i++){ int num=0; for(int j=0;j<b.length();j++){ if(b[j]==a[i]) { num++;} } cout<<a[i]<<" "<<num<<endl; } } return 0; }
标签:clu nbsp 格式 次数 结果 long using pre size
原文地址:https://www.cnblogs.com/bernieloveslife/p/9736644.html