//Programa que muestra el uso de variables
//escalares
public class Variables {
 public static void main(String[] args) {
   //declaracion
   boolean bandera;
   bandera = false;
   System.out.println(bandera);
   bandera = true;
   char ch ;
   ch = '@';
   System.out.println(ch);
   byte b = 13;
   System.out.println("byte "+b);
   int i = 9;
   System.out.println(i);
   float f = 3.14159f;
   System.out.println(f);
   long l = 123456789;
   System.out.println("Long "+l);
   double d = 2.99E9;
   System.out.println("Velocidad de la luz " + d);

 }

}