Advertisement
Guest User

Untitled

a guest
Feb 13th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. using System;
  2.  
  3. namespace thisspace
  4. {
  5. class newclass
  6. {
  7. public static void Main(string[] args)
  8. {
  9. int x = 24;
  10. int y = x;
  11. string num_name = Convert.ToString(x);
  12. Console.WriteLine(x);
  13. Console.WriteLine(y);
  14. x = 25;
  15. Console.WriteLine(y);
  16. Console.ReadLine();
  17. }
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement