0
Noun add es example students add es
a program add es example students
1 ответ
+ 2
So you want a program to make singular nouns to plural nouns?
You might need to use dictionaries to get the "odd" nouns that does not just simply follow the rules of just adding an "s"
If the word does not exist in the dictionary the program would just do:
plural = noun + "s";
The other option you have is to study word patterns and in your program you should identify different types of nouns like:
sky --> skies
and not
sky --> skys
or
Katniss --> Katnisses
and not
Katniss --> Katnisss
Good luck!