#include <stdio.h>
#include <string.h>
int main(){
char input[100000];
while(gets(input)!=EOF){
int count = 1;
for(int i=0;input[i]!='\0';i++){
if(input[i] == ' '){
count++;
}
}
printf("%d\n",count);
}
return 0;
}
#include
#includeint main(){
char input[100000];
while(gets(input)!=EOF){
int count = 1;
for(int i=0;input[i]!='\0';i++){
if(input[i] == ' '){
count++;
}
}
printf("%d\n",count);
}
return 0;
}
我怕被質疑貼程式碼,所以傳私人訊息給你了