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

HDOJ 2054

时间:2019-04-20 00:19:01      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:size   rcm   cst   clu   span   用法   style   nbsp   rank   

主要是关于!=string::npos的用法和substr的用法

 1 #include <iostream>
 2 #include <cstring>
 3 #include<stdlib.h>
 4 
 5 using namespace std;
 6 void del(string & str)
 7 {
 8     int i=str.size();
 9     if(str.find(.)!=string::npos)//表示判断是否找到
10     {
11         int j;
12         for(j=i-1;str[j]==0;j--);
13         str=str.substr(0,j);
14         if(str[j]==.)str=str.substr(0,j-1);//substr(a,b)函数作用在于返回rank(下标)从a到b的字符串
15 
16     }
17 }
18 
19 int main()
20 {
21     string a,b;
22     while(cin>>a>>b)
23     {
24         int x;
25         del(a);
26         del(b);
27         x=strcmp(a.c_str(),b.c_str());
28         if(x==0)cout<<"YES"<<endl;
29         else cout<<"NO"<<endl;
30 
31     }
32     return 0;
33 }

 

HDOJ 2054

标签:size   rcm   cst   clu   span   用法   style   nbsp   rank   

原文地址:https://www.cnblogs.com/IaCorse/p/10739479.html

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