Create a new program named Reverse4, which contains
a method that reverses the positions of four variables.
Write a Main() method that demonstrates the method
works correctly.
its should be something like
int temp;
temp = first;
first = second;
second = third;
etc, i donno how to solve it