Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- public class Codifica {
- public static void main(String args[]) {
- Scanner leiaStr = new Scanner(System.in);
- Scanner leia = new Scanner(System.in);
- String frase = leiaStr.nextLine();
- for(int i=0; i<frase.length(); i++){
- System.out.print((int)frase.charAt(i) + " ");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement