|
楼主 |
发表于 2017-12-12 11:50:33
|
显示全部楼层
#include<stdio.h>
#include<string.h>
int main ()
{
char s[80],ch,*p,*q;
int n;
gets(s);
p=s;
while(*p==' ')
——;
n=strlen(s);
q=——;
while(*q==' ')
——;
while(——&&*p==*q)
{
p++;
——;
}
if(p<q)
printf("no\n");
else
printf("yes");
} |
|