fork download
  1. class DatosEstudiante {
  2. public static void main(String[] args) {
  3.  
  4. int edad = 18;
  5. double promedio = 9.2;
  6. char inicial = 'A';
  7. boolean inscrito = true;
  8. String nombre = "Ana";
  9.  
  10. System.out.println("Nombre: " + nombre);
  11. System.out.println("Inicial: " + inicial);
  12. System.out.println("Edad: " + edad);
  13. System.out.println("Promedio: " + promedio);
  14. System.out.println("Inscrito: " + inscrito);
  15. }
  16. }
Success #stdin #stdout 0.2s 55792KB
stdin
Standard input is empty
stdout
Nombre: Ana
Inicial: A
Edad: 18
Promedio: 9.2
Inscrito: true