Translate

Monday, June 6, 2016

Write a program to print a reverse string.


Common program of interview.


package com.javahelp.stringprog;

import java.util.Scanner;

public class StringReverse {
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);

String s=sc.nextLine(); // enter the string

for(int i=s.length()-1; i>=0; i--)
{
System.out.print(s.charAt(i));
}

}

}

No comments:

Post a Comment