#4815: WA!! 請問這樣哪裡錯了?


matt9836matt (小搏)

學校 : 臺北市私立延平高級中學
編號 : 14573
來源 : [203.72.178.252]
最後登入時間 :
2011-12-28 17:23:52
a011. 00494 - Kindergarten Counting Game -- UVa494 | From: [59.115.100.98] | 發表日期 : 2011-01-26 19:06

與正確輸出不相符(line:1)
您的答案為: 2
正確答案為: 11

以下是我的code:

#include <iostream>
#include <cctype>
using namespace std;

int main()
{
char a[1000];
int b;
while(cin >> a){
b=1;
for(int i=0; i<1000; i++){
if(isalpha(a[i])==false)
b++;
if(isalpha(a[i])==false && isalpha(a[i+1])==false)
goto zxc;
}
zxc: ;
cout << b << endl;
}
}

 
ZeroJudge Forum