Write a function which accepts list of nouns as input
parameter and return the same list in the plural form.
Conditions: i) if last letter is r then append s
ii) if word ends with y then replace it by ies
iii) call this function in main() and produce the
required output.
for eg:- if chair is input it should give chairs as output.
No Answer is Posted For this Question
Be the First to Post Answer
how can i split sting in textbox in windows application using c# .net
c# code to Count number of 1's in a given range of integer (0 to n)
program for addition of fraction(M/N + P/Q = Y/Z)
how do i copy textbox contents of 1 form to another form
Code for Reading and writing from a file?
program to reverse the order of words in a string.
working with arrays
Coding for Manipulate XML File Data Using C#?
Write a program. there are 1..n numbers placed in an array in random fashion with one integer missing. find the missing number.
Create a class called Accounts which has data members like ACCOUNT no, Customer name, Account type, Transaction type (d/w), amount, balance D->Deposit W->Withdrawal If transaction type is deposit call the credit(int amount) and update balance in this method. If transaction type is withdraw call debit(int amt) and update balance. Pass the other information like Account no,name,Account Type through constructor. Call the show data method to display the values.
Can you declare an array of mixed Types?
how does the below eqation proceed to be solved: x*=y+z options: x=x*y+z or x=x*(y+z)