Advertisement
itbook

Program papagáj

Dec 11th, 2015
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.61 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace program_papagaj
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             Console.WriteLine("Ahoj som virtuálny papagáj napíš niečo: ");
  14.             string vstup;
  15.             vstup = Console.ReadLine();
  16.             string vystup;
  17.             vystup = vstup + "!" + vstup + "!!";
  18.             Console.WriteLine(vystup);
  19.             Console.WriteLine("Toto a ešte viac nájdete na itbook.sk");
  20.             Console.ReadKey();
  21.         }
  22.     }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement