题目链接
http://acm.hdu.edu.cn/showproblem.php?pid=2054
这题只要处理小数点后面无效的'0'或'.' strstr()函数是两个字符串 需用“”号
代码
#include<string.h>
#include<stdio.h>
char a[100000],b[100000];
void chu_li(char s[])
{
int i;
int len=strlen(s);
if(strstr(s,"."))
{
for(i=len-1;s[i]=='0';i--)
{
s[i]=' ';
}
if(s[i]=='.')
s[i]=' ';
}
}
int main(void)
{
int i,j,k;
while(scanf("%s%s",a,b)==2)
{
chu_li(a);
chu_li(b);
if(strcmp(a,b))
printf("NO
");
else
printf("YES
");
}
return 0;
}