4
Answers

Problem with metohds

Photo of Prime b

Prime b

13y
1.4k
1
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

Answers (4)