EquipoNo Actividad42
EquipoNo Actividad42
EquipoNo Actividad42
package programas120424;
import javax.swing.JOptionPane;
public class P01 {
public static void main(String[] args) {
String mensaje;
mensaje="Triangulo\n\n";
for(int altura = 1; altura<=(17/2); altura++){
for(int asteriscos = 0; asteriscos<altura; asteriscos++){
mensaje=mensaje+"*";
}
mensaje=mensaje+"\n";
}
for(int altura = (17/2)+1; altura>0; altura--){
//Espacios en blanco
for(int asteriscos = 0; asteriscos<altura; asteriscos++){
mensaje=mensaje+"*";
}
mensaje=mensaje+"\n";
}
JOptionPane.showMessageDialog(null,mensaje);
}
}
PROGRAMA 02
package programasb120424;
import javax.swing.JOptionPane;
public class P02 {
public static void main(String[] args){
String mensaje,datos;
int n,i,altura,numero;
mensaje="Triangulo de números\n\n";
datos=JOptionPane.showInputDialog("Escriba un número entero: ");
n=Integer.parseInt(datos);
String mensaje,datos,password;
password="MalumaBeibi";
mensaje=" ";
do{
datos=JOptionPane.showInputDialog("password: ");
password=datos;
if(password.equals(password)){
mensaje=mensaje+"Usted a ingresado Correctamente";
}else{
mensaje=mensaje+"No ha podido Ingresar";
}
}while(!password.equals(password));
JOptionPane.showMessageDialog(null, mensaje);
}
}
PROGRAMA 04
Package programas120424;
import javax.swing.JOptionPane;
public class P04 {
public static void main(String[] args) {
String mensaje = "";
String Refrescos, TBilletesStr, TMonedasStr;
int CRefresco = 25;
int BI100 = 0;
int BI50 = 0;
int BI20 = 0;
int MO20 = 0;
int MO10 = 0;
int MO5 = 0;
int refrescos, tbilletes, tmonedas, TIngresado, TPagar, cambio;
JOptionPane.showMessageDialog(null, resultado);
}
JOptionPane.showMessageDialog(null, mensaje);
return secuencia;
}