You are on page 1of 1

LAB211 Assignment Lab 3

LOC: 60

Title
Reverse word
Background
N/A

Program Specifications
Write a method called Reverse that accepts a String as its parameter and prints the words
in opposite order. For example, a call of printReverse("hello you me there"); should
print the following output:

there me you hello

If the empty string is passed, asking the user for input until not empty. Your method should
produce a complete line of output.

You might also like