This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.example; | |
public class Ejercicio { | |
public static void main(String[] args) | |
{ | |
int a, b, c, d; | |
a = 5; | |
b = 2; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* programa que calcula 2 numeros | |
* enteros ingresados por el usuario | |
* @author DiegoFenandoEcheverry (Godie007) | |
*/ | |
import javax.swing.*; | |
public class sumatoria { | |
// llamado main que inicia la ejecucion del programa | |
public static void main(String[] args) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.example; | |
public class Ejercicio { | |
public static void main(String[] args) | |
{ | |
int a, b, c, d; | |
a = 5; | |
b = 2; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import javax.swing.*; | |
/** | |
* programa que calcula 2 numeros | |
* enteros ingresados por el usuario | |
* @author DiegoFenandoEcheverry (Godie007) | |
*/ | |
public class Sumatoria { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import javax.swing.JOptionPane; | |
public class ejercicio4 { | |
public static void main(String[] args) | |
{ | |
int valorA = Integer.parseInt(JOptionPane.showInputDialog("ingrese valorA")); | |
int valorB = Integer.parseInt(JOptionPane.showInputDialog("ingrese valorB")); | |
int valorC = Integer.parseInt(JOptionPane.showInputDialog("ingrese valorC")); | |
if (valorA > valorB && valorA > valorC) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class ejemplos { | |
public static void main(String args[]){ | |
String Cadena="los nenes"; | |
if(Cadena.length()>20){ | |
System.out.println("la cadena tiene menos de 20 caracteres"); | |
} | |
else{ | |
System.out.println("la cadena tiene 20 o mas caracteres"); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package Empresa; | |
import javax.swing.JOptionPane; | |
public class MinimoComunMultiplo { | |
public static void main(String[] args) { | |
int a,b,t,t1,x; | |
a=Integer.parseInt(JOptionPane.showInputDialog("A")); | |
b=Integer.parseInt(JOptionPane.showInputDialog("B")); | |
t=1; //constante inicializada para evitar la multiplicidad x cero |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package Empresa; | |
public class NumPrimo { | |
public static void main(String[] args) { | |
System.out.println("1"); | |
for (int i = 1; i <= 100; i++) { | |
int contador = 0; | |
for (int j = 1; j <= i; j++) { | |
if (i % j == 0) | |
contador++; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div dir="ltr" style="text-align: left;" trbidi="on"> | |
<br /> | |
Introducción<br /> | |
La calidad está de moda, en todos los aspectos, pero especialmente en el desarrollo de<br /> | |
software. El interés por la calidad crece de forma continua, a medida que los clientes se<br /> | |
vuelven más selectivos y comienzan a rechazar productos poco fiables o que realmente no<br /> | |
dan respuesta a sus necesidades. Ahora bien, ¿qué es la calidad del software?<br /> | |
La Calidad del Software es “la concordancia con los requerimientos funcionales y de<br /> | |
rendimiento explícitamente establecidos, con los estándares de desarrollo documentados y<br /> | |
con las características implícitas que se esperan de todo software desarrollado<br /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Aca va el contenido | |
<script> | |
document.write("\<script src='http://code.jquery.com/jquery-latest.min.js' type='text/javascript'>\<\/script>"); | |
</script> | |
<script> | |
$(function(){ | |
$('#content-wrapper').hide(); | |
var autenticado = false; | |
OlderNewer