Advertisement
Guest User

Untitled

a guest
Oct 25th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 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 Uppgift1
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. Console.WriteLine("Please Enter your name");
  14. string userName;
  15. userName = Console.ReadLine();
  16. Console.WriteLine("Welcome " + userName + "to C# World!");
  17. Console.WriteLine("How old are you " + userName+"?");
  18. Console.WriteLine("Your age is + age");
  19. int userAge;
  20. userAge = Convert.ToInt16(Console.ReadLine());
  21.  
  22. Console.Write("Your Age is " + userAge);
  23. Console.ReadLine();
  24. }
  25. }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement