Advertisement
Guest User

0.4

a guest
Mar 22nd, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.25 KB | None | 0 0
  1. public class Main {
  2.     public static void main(String[] args) {
  3.         Scanner sc =new Scanner(System.in);
  4.  
  5.        String input=sc.nextLine();
  6.         for (char c : input.toCharArray()) {
  7.             System.out.print((char)(c+3));
  8.         }
  9.  
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement