#17718: 使用str.erase();


ufve0704 (爬 我爬 我爬爬爬 有排行榜這種東西就是要爬 爬過我上面的那...)

學校 : 臺北市私立延平高級中學
編號 : 83268
來源 : [203.72.178.1]
最後登入時間 :
2023-10-30 13:02:50
a221. 11734 - Big Number of Teams will Solve This -- UVa11734 | From: [114.42.223.98] | 發表日期 : 2019-05-11 10:04

#include<bits/stdc++.h>
using namespace std;
int main(){
string a,b;
int c,d,e;
cin>>c;
d=c;
getline(cin,a);
while(c--){
getline(cin,a);
getline(cin,b);
if(a==b)
cout<<"Case "<<d-c<<": Yes"<<'\n';
else{
e=a.size();
while(e--)
if(a[e]==' ')
a.erase(e,1);
e=b.size();
while(e--)
if(b[e]==' ')
b.erase(e,1);
if(a!=b)
cout<<"Case "<<d-c<<": Wrong Answer"<<'\n';
else
cout<<"Case "<<d-c<<": Output Format Error"<<'\n';
}
}
}

 
ZeroJudge Forum