HELP Solve this problem in vb.net using console app.!!!!
1) Write a program that accept a number and output its equivalent in words.
sample:
enter a number: 100
output: One hundred
2) Write a program that accepts an ordinary number and outputs its equivalent In roman numerals.
sample:
ordinary numbers: 1,5,10,50,100,500,1000
roman numerals: I,V,X,L,C,D,M
input:2968
output: MMCMLXVIII
3) Write a program that will accepts a string and output the letter per line.
sampe:
input: The world is beautiful.
output:
T
h
e
w
o
r
l
d
i
s
b
e
a
u
t
i
f
u
l
.
4) Write a program that takes nouns and forms their plurals on the basis of these rules:
a. if the noun end in "y" remove the "y" and add "eis".
b. if a noun ends in "s", "ch" or "sh", add "es"
c. in all other cases add "s"