Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 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 ConsoleApplication31
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. GetUsername();
  14. }
  15.  
  16. static void GetUsername()
  17. {
  18. Console.Write("Enter your username: ");
  19. string username = Console.ReadLine();
  20.  
  21. Console.Write("Enter your age: ");
  22. int age = Convert.ToInt32(Console.ReadLine());
  23.  
  24. Console.Write("Your username is " + username + "\n");
  25. Console.Write("Your age is " + age + " years old");
  26. Console.ReadKey();
  27.  
  28. if (age <= 10)
  29. {
  30. Console.WriteLine("еблан нахуй ты скачал эту програму. школота пиздуй нах.");
  31. }
  32.  
  33. if (age >= 11)
  34. {
  35. Console.WriteLine("оо ебать взрослы))");
  36. }
  37. }
  38. }
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement