Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write the function String pluralForm (String word) which takes a standard English word as a parameter and returns the plural form based on the following

image text in transcribed

Write the function String pluralForm (String word) which takes a standard English word as a parameter and returns the plural form based on the following English rules. Punctuation should be preserved. . If the word ends in s, x, z, ch, or sh, add es to the end of the word. . If the word ends in o preceded by a consonant, add es to the end of the word. If the word ends in y preceded by a consonant, replace the y with ies. . For all other cases, add an s to the end of the word. Example runs are shown below. This program converts an English word to its plural form. English word: toy Plural form: toys This program converts an English word to its plural form. English word: toy. Plural form: toys. This program converts an English word to its plural form. English word: toss Plural form: tosses Valid input Each word provided as input will comprise lowercase alphabetic characters. Also, each word may be terminated by one "normal" punctuation mark (i.e., any from ,.!?;). Input words will not contain any spaces, numeric digits, or other unspecified non-alphabetic characters

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions

Question

6. What are the basic functions of a package? (LO4)

Answered: 1 week ago

Question

9. Understand the phenomenon of code switching and interlanguage.

Answered: 1 week ago