檢查不是字母的下一個字元是不是字母,如果是數量就加一。對於這種input很多字串的情況,可以使用freopen("input.txt","rt",stdin)在debug時較為方便,但提交時記得刪除。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <cstdio> | |
using namespace std; | |
char line[100000]; | |
bool is_word (char a){ | |
if (a<='z' && a>='a' || a<='Z' && a>='A') | |
return 1; | |
return 0; | |
} | |
int main() | |
{ | |
// freopen ("input.txt","rt",stdin); | |
while (gets(line)){ | |
int num; | |
num = is_word(line[0]); | |
for(int i=0; line[i+1]; i++){ | |
if (!is_word(line[i])) num += is_word(line[i+1]); | |
} | |
printf("%d\n",num); | |
} | |
return 0; | |
} |
沒有留言:
張貼留言