Ejercicios de Programacion

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

String a = "hola";

String b = 'h' + "o" + 'l' + "a" + "";


boolean c = a.equals (b);
boolean e = !c;
char f = 'f';
char g = 'f';
boolean h = g != f;
System.out.println (a);
System.out.println (b);
System.out.println (c);
System.out.println (e);
System.out.println (f);
System.out.println (g);
System.out.println (h );

You might also like