[問題] ACM494 兩種做法的問題
下面是我做的兩種做法
第一種AC
第二種WA
不過我一直找不出來第二種錯在哪裡XD
有哪個測資是兩個做法會有不同的地方
請各位高手幫幫忙
謝謝
int main()
{
char str[400];
register int i,len,count;
while(gets(str))
{
len=strlen(str);
if(len==0)
return 0;
count=0;
for(i=0;i<len;i++)
{
if( (isalpha(str[i])) && !(isalpha(str[i+1])) )
count++;
}
printf("%d\n",count);
}
}
================================================
int main()
{
register int count=0;
register char c;
while(c=getchar())
{
if(isalpha(c))
{
while(c=getchar())
{
if(isalpha(c))
continue;
else
break;
}
count++;
}
if(c=='\n')
{
printf("%d\n",count);
count=0;
continue;
}
if(c==EOF)
{
printf("%d",count);
return 0;
}
}
return 0;
}
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 218.164.107.205
推
02/09 20:49, , 1F
02/09 20:49, 1F
推
02/09 20:52, , 2F
02/09 20:52, 2F
→
02/09 20:53, , 3F
02/09 20:53, 3F
→
02/09 20:53, , 4F
02/09 20:53, 4F
→
02/09 20:53, , 5F
02/09 20:53, 5F
推
02/09 21:28, , 6F
02/09 21:28, 6F
推
02/09 21:37, , 7F
02/09 21:37, 7F
→
02/09 21:41, , 8F
02/09 21:41, 8F
→
02/09 21:50, , 9F
02/09 21:50, 9F
推
02/09 22:08, , 10F
02/09 22:08, 10F
→
02/09 22:19, , 11F
02/09 22:19, 11F
推
02/09 23:07, , 12F
02/09 23:07, 12F
→
02/09 23:23, , 13F
02/09 23:23, 13F
→
02/09 23:25, , 14F
02/09 23:25, 14F
C_and_CPP 近期熱門文章
PTT數位生活區 即時熱門文章