Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- int a = 2;
- int b = 3;
- Console.WriteLine($"a = {a}");
- Console.WriteLine($"b = {b}");
- int c = b;
- b = a;
- a = c;
- Console.WriteLine($"a = {a}");
- Console.WriteLine($"b = {b}");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement