Advertisement
Guest User

Laba 5

a guest
Sep 30th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 5 0.32 KB | None | 0 0
  1. package com.company;
  2.  
  3. import java.util.Scanner;
  4.  
  5. public class Main {
  6.  
  7.     public static void main(String[] args) {
  8.  
  9.         Scanner in = new Scanner(System.in);
  10.  
  11.         String str = in.nextLine();
  12.  
  13.         String conversely = new StringBuffer(str).reverse().toString();
  14.         System.out.print(conversely);
  15.     }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement