Advertisement
michael_xgrind

Codifica

May 10th, 2015
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.33 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class Codifica {
  4.     public static void main(String args[]) {
  5.         Scanner leiaStr = new Scanner(System.in);
  6.         Scanner leia = new Scanner(System.in);
  7.        
  8.         String frase = leiaStr.nextLine();
  9.        
  10.         for(int i=0; i<frase.length(); i++){
  11.             System.out.print((int)frase.charAt(i) + " ");
  12.         }      
  13.        
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement