#include <iostream>
#include<stdio.h>
#include <stdlib.h>
#include <string.h>
//| The Link Your Class | EE308FZ[A] (22-23:S1): LAB 1 (maynoothuniversity.ie) |
//| ----------------- |--------------- |
//| The Link of Requirement of This Assignment | (8条消息) Self-introduction_Kathy Chen 2214的博客-CSDN博客 |
//| The Aim of This Assignment | Introduce myself and complete the first assignment of the course. |
//| MU STU ID and FZU STU ID | 20122349 832002214|
int find_number(char characters[]);
void find_words(char characters[]);
int main(){
char initial[100];
scanf("%s",initial);
// find_words(initial);
printf("%d",find_number(initial));
system("pause");
return 0;
}
int find_number(char characters[]){
int i,j=0,k,t,n=0;
char father[5][10]={"one","two","three","four","five"};
for(i=0;i<5;i++){
for(k=0;k<strlen(characters);k++){
if(father[i][0]==characters[k]){
t=k;
for(j=0;father[i][j]==characters[t];j++,t++){
if(j+1==strlen(father[i])){
n++;
}
}
}
}
}
return n;
}
05-20
1381
