Prime b

Prime b

  • NA
  • 810
  • 346k

Problem with metohds

Jan 15 2012 5:35 PM
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)