Advertisement
neogz

C# - Unesi ime

Oct 19th, 2015
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.58 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 sisarp
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             string ime;
  14.             Console.WriteLine("Unesite vase ime: ");
  15.             ime = Console.ReadLine();
  16.  
  17.             int godina;
  18.             Console.WriteLine("Koliko godina imate? ");
  19.             godina = int.Parse(Console.ReadLine());
  20.  
  21.             Console.WriteLine("Vase ime je: {0} i imate {1} godina", ime, godina );
  22.  
  23.         }
  24.  
  25.     }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement