Advertisement
Guest User

Untitled

a guest
Feb 21st, 2020
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. using System;
  2.  
  3. namespace FirstTry
  4. {
  5. class Prgram
  6. {
  7. static void Main()
  8. {
  9. Console.WriteLine("Write your First name");
  10. string Name = Console.ReadLine();
  11. Console.WriteLine("Write your Family name");
  12. string Family = Console.ReadLine();
  13. Console.WriteLine("write your Age");
  14. int Age = int.Parse (Console.ReadLine());
  15. Console.WriteLine("Name of your town");
  16. string Town = Console.ReadLine();
  17. Console.WriteLine($"You are {Name} {Family} {Age} years old from {Town}.");
  18. }
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement