Guest User

04. Concatenate Data

a guest
Oct 26th, 2016
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 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. namespace ConsoleApplication3
  7. {
  8. class Program
  9. {
  10. static void Main(string[] args)
  11. {
  12. var firstname = Console.ReadLine();
  13. var lastname = Console.ReadLine();
  14. var age = int.Parse(Console.ReadLine());
  15. var town = Console.ReadLine();
  16. Console.WriteLine("You are {0} {1}, a {2}-years old person from {3}.", firstname, lastname, age, town);
  17.  
  18. }
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment