Advertisement
jwrbg

asd

Feb 13th, 2019
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.37 KB | None | 0 0
  1. package ProgrammingBasics;
  2.  
  3. import java.util.Scanner;
  4.  
  5. public class AAA {
  6.     public static void main(String[] args){
  7.         Scanner scanner = new Scanner(System.in);
  8.         String password = scanner.nextLine();
  9.         for (int j = password.length(); j >=0 ; j--) {
  10.             System.out.println(password.charAt(j));
  11.         }
  12.     }
  13.  
  14.  
  15.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement