Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace aliohjelmahommia
- {
- class MainClass
- {
- public static void ToivotaTervehdys(string textToBeWritten)
- {
- // Your Logic Here!!
- Console.WriteLine(textToBeWritten);
- }
- public static void ToivotaTervehdys(string textOne,
- string textTwo)
- {
- // Your Logic Here!!
- Console.WriteLine(textOne);
- Console.WriteLine(textTwo);
- }
- public static void Main(string[] args)
- {
- Console.Write("ANna joku teksti kiitti ->");
- string tervehdys;
- tervehdys = Console.ReadLine();
- ToivotaTervehdys(tervehdys);
- }
- }
- }
Add Comment
Please, Sign In to add comment