SHOW:
|
|
- or go back to the newest paste.
1 | using System; | |
2 | ||
3 | namespace aliohjelmahommia | |
4 | { | |
5 | class MainClass | |
6 | { | |
7 | public static void ToivotaTervehdys(string textToBeWritten) | |
8 | { | |
9 | // Your Logic Here!! | |
10 | Console.WriteLine(textToBeWritten); | |
11 | } | |
12 | ||
13 | public static void ToivotaTervehdys(string textOne, | |
14 | string textTwo) | |
15 | { | |
16 | // Your Logic Here!! | |
17 | Console.WriteLine(textOne); | |
18 | Console.WriteLine(textTwo); | |
19 | } | |
20 | ||
21 | public static void Main(string[] args) | |
22 | { | |
23 | Console.Write("ANna joku teksti kiitti ->"); | |
24 | string tervehdys; | |
25 | tervehdys = Console.ReadLine(); | |
26 | ||
27 | ToivotaTervehdys(tervehdys); | |
28 | } | |
29 | } | |
30 | } |