SHARE
TWEET
Untitled
a guest
Jan 29th, 2018
46
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
- using System;
- namespace _05.Word_in_plural
- {
- class Program
- {
- static void Main(string[] args)
- {
- string noun = Console.ReadLine();
- if (noun.EndsWith("y"))
- {
- noun = noun.Remove(noun.Length-1);
- noun = noun + "ies";
- }
- else if (noun.EndsWith("o")|| noun.EndsWith("ch")||noun.EndsWith("s")||noun.EndsWith("sh")|| noun.EndsWith("x") || noun.EndsWith("z") )
- {
- noun = noun + "es";
- }
- else
- {
- noun = noun + 's';
- }
- //bool temp = noun.EndsWith('y');
- Console.WriteLine(noun);
- }
- }
- }
RAW Paste Data

