Entradas

Mostrando las entradas de julio, 2014

superclase, metodos, objetos, constructores, this, sobrecarga de metodos

Imagen
SUPERCLASE La clase más alta, la clase de la que todas las demás descienden, es la clase Object, definida en java.lang. Object es la raíz de la herencia de todas las clases. En esta estructura jerárquica, cada clase tiene sólo una clase padre. La clase padre de cualquier clase es conocida como  superclase .  La clase hija de una superclase es llamada una  subclase . *  Una superclase puede tener cualquier número de subclases. *  Una subclase puede tener sólo una superclase. A es la superclase de B, C y D. D es la superclase de E. B, C y D son subclases de A. E es una subclase de D. METODOS Se podría decir que existen 2 grandes tipos de métodos, el primer tipo de método son métodos que realizan procesos, puedes realizar cualquier operación con ellos, sin embargo el propósito es manipular variables existentes (RETORNAN UN DATO). El segundo tipo de métodos son los que realizan un proceso o cálculo (PARAMETROS), y calculan una variable especí...

SUPERCLASS, METHOD, OBJECT, BUILDERS, THIS, METHODS OVERLOAD

Imagen
SUPERCLASS The highest class, the class from which all others descend, is the Object class defined in java.lang. Object is the root of the inheritance of all kinds. In this hierarchical structure, each class has only one parent class. The parent class of any kind is known as superclass. The child class is called a superclass of a subclass. * A superclass can have any number of subclasses. * A subclass can have only one superclass. A is the superclass of B, C and D. D is the superclass of E. B, C and D are subclasses of A. E is a subclass of D. METHODS  You could say that there are two main types of methods, the first type of method are methods that perform processes can perform any operation with them, but the purpose is to manipulate existing variables (RETURNING A DATA). The second type of methods are those that perform a process or calculation (SETUP), and calculate a specific variable, an example could be a method to get the value of a multiplication. We used to encapsulate ...

coffee service in java netbeans

Imagen
This is a code to order coffee; gives options cappuccino, mocha and red when the option you want digiten show the value of coffee of choice after that payment and asked if you had to spin the says if everything he says is missing, very simple to do.  To show returns in a variable System.out.println puts the payment less the value of the coffee of choice on if this is done then you'll see the code.  Seller This is the Scanner which can request data screen brings. public static void main(String[] args) {                                 Scanner tec = new Scanner(System.in);             int num1, num2;             int capuccino=10;             int...

servicio café

Imagen
Este es un código para pedir café; da las opciones cappuccino, tinto y moka cuando digiten la opción que quieran mostrara el valor del café que escogió después de eso pedirá el pago y si tiene que dar vueltas las dice si no dice cuanto le falta, muy sencillo de hacer. Para hacer que muestre las vueltas, en un system.out.println se pone la variable pago menos el valor del café que escogió esto se hace en un if que lo veras a continuación en el código. Se trae la librería Scanner este es el que puede pedir datos por pantalla. public static void main(String[] args) {                                 Scanner teclado = new Scanner(System.in);             int num1, num2;             int capuccino=10;   ...

The time military

Imagen
The time military is very easy to do as it consists of making three equal tucked into each other is the first time, must be less than 24 to stop when you reach 24; inside is going to be one that is minute and has to less than 60 because when you reach 60 advanced one hour; finally be the third while inside while the other two and is the second must also be like less than 60 minutes to get to this number when advance one minute within this has to be a System.out.println where this variable hour, minute and second in the code as shown below is displayed 00:00:00 to 23:59:59. public static void main(String[] args) {                                int hora = 0;                              ...

hora militar

Imagen
La hora militar es muy fácil de hacer ya que consta de hacer tres while cada uno dentro del otro; el primero es el de hora, tiene que ser menor a 24 para que cuando llegue a 24 pare; dentro de esté va a haber otro que es el de minuto y tiene que menor a 60 porque cuando llegue a 60 avanza una hora; por ultimo estará el tercer while dentro los otros dos while y es el de segundo tiene que ser también como el de minuto menor que 60 para que cuando llegue a este número avance  un minuto dentro de este tiene que haber un system.out.println donde este la variable hora, minuto y segundo en el código de abajo se muestra como es que aparecerá en pantalla 00:00:00 hasta 23:59:59. public static void main(String[] args) {                                int hora = 0;             ...

creating bill

Imagen
code in which the creation of a bill through java netbeans is easy done, I hope to provide to those who want to start programming or those who are studying and let them work something haha Scanner first library is brought after capturing user data with String variables take a method to calculate vat where the operation is performed to calculate the total is multiplied product cost with the amount of product is made, then the VAT is which is the total multiplied by 16 and divided by 100 after taxes plus the total adds a System.out.println and the total sum is displayed; method also creates one invoice within this there one System.out.println showing all data with the user's digit plus the VAT invoice. EXCEPTIONS: when the user enters the number one option while typing which is created if the user what digit is less than 1, would send one System.out.println telling you to enter valid values ​​as if this is no exception would put when multiplied by quantity daria cost 0 and 0 ser...

como crear factura java

Imagen
codigo en el cual se hace la creacion de una factura por medio de java netbeans es muy sencillo, espero que les sirva a los que quieran empezar a programar o los que estan estudiando y les dejaron algo parecido de trabajo jaja primero se trae la libreria Scanner luego se piden los datos del usuario capturando con variables String se hace un metodo calcular iva donde se hace la operacion para calcular el total que es multiplicar el costo del producto con la cantidad del producto, luego se hace el iva que es el total multiplicado por 16 y dividido entre 100 despues se suma el total mas el iva y en un system.out.println se muestra el total de la suma; tambien se crea un metodo factura dentro de este ahi un system.out.println mostrando todos los datos que digito del usuario con su factura mas el iva. EXCEPCIONES: en el momento que el usuario entra en la opcion de digitar cantidad se crea un while donde lo que digito el usuario es menor a 1, mandaria un system.out.println diciendo que d...

nfactorial

Imagen
here is the java code on how to request the entry of a number and re factorial is easy, I hope you serve those interested in this program and this beginning, also for those who are studying programming. first trip to bring the Scanner library, then a short int variable is created and initialized to 2 because that's factorial operation to pass, after a System.out.println asking you to enter the number, and the data is captured an int variable; for it is a sum equals sum i (i is for this) and closes on for a System.out.println factorial it is concatenated with the variable to which the data of the sample are captured number entered with the sum variable that is transforming the factorial number Scanner s= new Scanner(System.in);      int sum=2;      System.out.print("Please enter number:");      int a= s.nextInt();          for(int i=a;i>2;i--){      sum=sum*i;      }   ...

nfactorial

Imagen
acá se encuentra el código en java sobre como  pedir el ingreso de un numero y volverlo factorial es muy fácil, espero que les sirva a los que este interesados en programar y este iniciando, tambien para los que están estudiando programación. primero ahí que traer la librería Scanner, luego se crea una variable int suma y se inicializa en 2 porque así es la operación para pasar a factorial, despues con un system.out.println pidiendo que digite el numero, y se captura el dato con una variable int a; con un for se hace suma es igual a suma por i ( esta i es del for) se cierra el for y con un system.out.println se muestra el factorial concatenado con a que es la variable con la que se capturan el dato del numero ingresado junto con la variable suma que es la que transforma el numero en factorial  Scanner s= new Scanner(System.in);      int suma=2;      System.out.print("Por favor ingrese numero:");      int a= s.nextInt(); ...