domingo, 24 de noviembre de 2013

We have made a first foray into Java but it is essential we continue talking about fundamental concepts of OOP: objects and classes. These terms seem familiar resultarnos.   In daily life we can think of objects as an apple or a book and we can distinguish kinds of things such kinds of plants . However, the term programming and the term object class does not keep an exact correlation with the...
Hemos realizado una primera incursión en Java pero para proseguir se nos hace indispensable hablar de conceptos fundamentales de la programación orientada a objetos: objetos y clases. Estos términos parecen resultarnos familiares En la vida diaria podemos pensar en objetos como una manzana o un libro y podemos distinguir clases de cosas: por ejemplo clases de...

viernes, 22 de noviembre de 2013

Separators in Java

Java has 6 types of separators, these are:[] Brackets: Used to declare these arrangements and values​​.  {} Braces: Used to define a block of code and create an array with initial values.() Parentheses: Used to call methods, define the origin of some expression, establish conditions under control structures, among other functions.  ; The semicolon: Used to chain statements inside a for loop...

Los separadores en Java

Java posee 6 tipos de separadores, estos son:[] Los corchetes: Se utilizan para declarar arreglos y valores de éstos.  {} Las llaves: Se utilizan para definir un bloque de código y crear un arreglo con sus valores iniciales. () Los paréntesis: Se utilizan para llamar métodos, definir la procedencia de alguna expresión, establecer condiciones en las estructuras de control, entre otras funciones.  ;...

Comments on Java

Comments in java programs serve to explain the lines of code, these comments are "invisible" to the compiler and therefore do not affect the program.Comments to a single line of text: To use this type of comment should be placed a double slash (/ /) at the beginning of the line.Review of one or more lines: To use this type of comment should place a + slash asterisk (/ *) at the beginning of the first...

Comentarios en Java

Los comentarios en programas java sirven para explicar las lineas de código, éstos comentarios son "invisibles" para el compilador y por ende no influyen en el programa.Comentario para una sola linea de texto: Para utilizar este tipo de comentario se debe colocar un doble slash (//) al principio de la linea. Comentario de una o más lineas: Para utilizar este tipo de comentario se debe colocar un...

miércoles, 20 de noviembre de 2013

pseudocode

It is a specification language algorithms. The use of such language makes final encoding step (ie , the translation to a programming language ) relatively easy.The pseudocode born as a language similar to natural language and was a basically represent mediopara control structures structured programming. A first draft is considered , since the pseudo must subsequently translated to a programming...

PSEUDOCODIGO

Es un lenguaje de especificación de algoritmos. El uso de tal lenguaje hace el paso de codificación final (esto es, la traducción a un lenguaje de programación) relativamente fácil. El pseudocódigo nació como un lenguaje similar al lenguaje natural y era un mediopara representar...

deja un comentario