Curso by DTS 2021

Ejercicios Prácticos en JAVA Convertir caracteres a número import javax.swing.JOptionPane;public class Caracteranumero {     public static void main(String[] args) {                  String texto=JOptionPane.showInputDialog(«Introduce un caracter ASCII»);        //Pasamos el String a char con el metodo charAt        char caracter=texto.charAt(0);          //Pasamos el caracter a codigo        int codigo=(int)caracter;          System.out.println(codigo);    }} Convierte número a carácter al que pertenece import javax.swing.JOptionPane;public class Numeroacaracter {     public static void main(String[] args) {         String texto=JOptionPane.showInputDialog(«Introduce un numero»);        //Pasamos el […]

Curso by DTS 2021 Leer más »