I'm having trouble with this problem.
Here is the code I wrote out:
package com.jdewey.rvrs;
import java.util.Scanner;
public class Reverse {
    public static void main(String[] args) {
        Scanner console = new Scanner(System.in);
        System.out.print("Enter your string: ");
        String userIn = console.nextLine();
        int inLength = userIn.length();
        stringRvrs(userIn, inLength);
    }   
    public static void stringRvrs(String x, int length){
        for(int i = 1; i <= length; i++){
            int y = -1 * i + length;
            System.out.print(x.substring(y));;
        }
    }
}
It's supposed to output "tset" if you were to input "test"
Please help!
 
     
     
     
     
    