Prog.de Tello

  • October 2019
  • PDF

This document was uploaded by user and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this DMCA report form. Report DMCA


Overview

Download & View Prog.de Tello as PDF for free.

More details

  • Words: 12,787
  • Pages: 31
import java.math.*; public class Auto {

import java.math.*; public class Ergio3 { double e,u, fergios, lergios, ergios;

double dr,s,d,t; public Auto (double s, double d, double t){

public Ergio3(double e, double u, double fergios){ this.e=e; this.fergios=fergios; this.u=u; } public double calculapro3(){ lergios= 2*3.1416*Math.pow(e,u); ergios = (fergios * Math.sqrt(lergios)); return ergios; }

this.s=s; this.d=d; this.t=t; } public double calcAuto(){ dr=s-(1/2)*d*Math.pow(t,2); return dr; } } import java.io.*; public class Main { public static void main(String[] args) throws IOException { float s, d, t; System.out.println ("Porfavor teclee los segundos:"); BufferedReader entradaA=new BufferedReader(new InputStreamReader(System.in)); String cadenaA=entradaA.readLine(); s=Float.parseFloat(cadenaA); System.out.println ("Porfavor teclee la distancia del auto:"); BufferedReader entradaB=new BufferedReader (new InputStreamReader (System.in)); String cadenaB=entradaB.readLine(); d=Float.parseFloat(cadenaB); System.out.println ("Porfa amigo ultimo valor teclee el tiempo :"); BufferedReader entradaC=new BufferedReader (new InputStreamReader (System.in)); String cadenaC=entradaC.readLine(); t=Float.parseFloat(cadenaC);

} import java.io.*; public class Main { public static void main(String[] args) throws IOException { double e,u, fergios; System.out.println("introduce el valor de fergios "); BufferedReader entradaA=new BufferedReader (new InputStreamReader(System.in)); String cadenaA=entradaA.readLine(); fergios=Float.parseFloat(cadenaA); System.out.println("introduce el valor de e "); BufferedReader entradaB=new BufferedReader (new InputStreamReader(System.in)); String cadenaB=entradaB.readLine(); e=Float.parseFloat(cadenaB); System.out.println("introduce el valor de u "); BufferedReader entradaC=new BufferedReader (new InputStreamReader(System.in)); String cadenaC=entradaC.readLine(); u=Float.parseFloat(cadenaC);

Auto e=new Auto (s, d, t); System.out.println("La distancia del automovil recorrida es : " +e.calcAuto()); // TODO code application logic here } }

Ergio3 n=new Ergio3 (e,u,fergios); System.out.println("El valor de ergios es = " +n.calculapro3()); // TODO code application logic here

import java.math.*; public class Ecuacion { double a, b, c; public Ecuacion(double a, double b, double c) { this.a = a; this.b = b; this.c = c; } public double calcRaizX1(){ double X1; X1=(-1*b + Math.sqrt(Math.pow (b,2)- 4*a*c ))/(2*a); return X1; } public double calcRaizX2(){ double X2; X2 = (-1*b - Math.sqrt(Math.pow (b,2)- 4*a*c))/(2*a); return X2; } } import java.io.*; public class Main { public static void main(String[] args) throws IOException { float a, b, c; System.out.println ("Coeficiente A:"); BufferedReader entradaA=new BufferedReader(new InputStreamReader(System.in)); String cadenaA=entradaA.readLine(); a=Float.parseFloat(cadenaA); System.out.println ("Coeficiente B:"); BufferedReader entradaB=new BufferedReader (new InputStreamReader (System.in)); String cadenaB=entradaB.readLine(); b=Float.parseFloat(cadenaB);

import java.math.*; public class Circuito { double v,f,c1,c2,cr; public Circuito(double v, double f){ this.v=v; this.f=f; } public double calc1(){ c1=(150)*v/(0.38)*f; return c1 ; } public double calc2(){ c2=(230)*v/(Math.sqrt(56*56))+((0.98)*f*((0.98)*f)); return c2; } public double calcR(){ cr=c1+c2; return cr; } } import java.io.*; public class Main {

System.out.println ("Teclea valor de tiempo amigo porfa:"); BufferedReader entradaB=new BufferedReader (new InputStreamReader (System.in)); String cadenaB=entradaB.readLine(); t=Float.parseFloat(cadenaB);

System.out.println ("Introduce el valos F:"); BufferedReader entradaB=new BufferedReader (new InputStreamReader (System.in)); String cadenaB=entradaB.readLine(); f=Float.parseFloat(cadenaB);

}

Circuito e=new Circuito (v, f); System.out.println("Resusltado del 1º circuito : " +e.calc1()); System.out.println("Resusltado del 2º circuito : " +e.calc2()); System.out.println("La suma de los dos es : " +e.calcR());

}

}

}

Ecuacion e=new Ecuacion(a, b, c); System.out.println(e.calcRaizX1()); System.out.println(e.calcRaizX2()); // TODO code application logic here

(ERGIOS)

public static void main(String[] args) throws IOException { double v, t; System.out.println ("Escribe la velocidad porfa:"); BufferedReader entradaA=new BufferedReader(new InputStreamReader(System.in)); String cadenaA=entradaA.readLine(); v=Float.parseFloat(cadenaA);

public static void main(String[] args) throws IOException { double v, f ; System.out.println ("Introduce el valos V:"); BufferedReader entradaA=new BufferedReader(new InputStreamReader(System.in)); String cadenaA=entradaA.readLine(); v=Float.parseFloat(cadenaA);

System.out.println ("Coeficiente C:"); BufferedReader entradaC=new BufferedReader (new InputStreamReader (System.in)); String cadenaC=entradaC.readLine(); c=Float.parseFloat(cadenaC);

( AUTOMOVIL)

import java.math.*; public class P2 { double v, t; public P2(double v, double t) { this.v = v; this.t = t; } public double calcmilla(){ double d; d=v*t; return d; } } import java.io.*; public class Main {

}

( PANELES)

P2 e=new P2 (v, t); System.out.println("Tu resultado " +e.calcmilla()); }

} }

} } import java.math.*; public class Circuito { double v,f, r1,r2,su; public Circuito(double v, double f){ this.v=v; this.f=f; } public double calcir(){ r1=150*v/0.38*f; return r1; } public double calcir1(){ r2= 230*v/Math.sqrt(56*56+0.98*f*0.98*f); return r2; } public double suma(){ su= r1+r2; return su; } } import java.io.*; public class Main { public static void main(String[] args) throws IOException { double v,f; System.out.println("introduce el valor de V "); BufferedReader entradaA=new BufferedReader (new InputStreamReader(System.in)); String cadenaA=entradaA.readLine(); v=Float.parseFloat(cadenaA); System.out.println("introduce el valor de F "); BufferedReader entradaB=new BufferedReader (new InputStreamReader(System.in)); String cadenaB=entradaB.readLine(); f=Float.parseFloat(cadenaB);

Realizar un programa que tenga el factorial de un producto. import java.math.*; public class Factorial { int n1; public Factorial(int n1) { this.n1 = n1; } public double calcFac(){ int r=1; for(int j =1; j<=n1; j++) r=r*j; return r; } }import java.io.*; public class Main { public static void main(String[] args)throws IOException{ int n1; System.out.println("Ingresa El Numero para obtener su Factorial"); BufferedReader entradaA=new BufferedReader(new InputStreamReader(System.in)); String cadenaA=entradaA.readLine(); n1=Integer.parseInt(cadenaA); Factorial f=new Factorial(n1); System.out.println(f.calcFac()); } }

(BANCO)

(ECUACIÓN DE 2º) Escriba un programa para determinar el máximo común divisor de dos números enteros mediante el algoritmo de euclides.

import java.io.*; public class Main { /** Creates a new instance of Main */ public Main() { } public static void main(String[] args)throws IOException { BufferedReader keep = new BufferedReader(new InputStreamReader(System.in)); System.out.println(" Ingrese numero : "); int narreglo = Integer.parseInt(keep.readLine( )); int arreglo[] = new int[narreglo]; for(int i = 0; i < arreglo.length; i++){ arreglo[ i ]= (int)(Math.random()*50); System.out.println("arreglos = " + arreglo[ i ]); } int r = SumaPares(arreglo); System.out.println("La suma de los numeros es : " + r); } public static int SumaPares(int npares[]){ int r =0; for(int j = 0; j
import java.math.*; public class Euclides { int n1,n2, c, di, re=1; public Euclides(int n1, int n2) { this.n1 = n1; this.n2 = n2; } public double calcf(){ if (n10) { c=n1/n2; re=n1%n2; n1=n2; n2=re; } return n1; } }import java.io.*; public class Main { public static void main(String[] args)throws IOException{ int n1,n2; System.out.println("Divisor m "); BufferedReader entradaA=new BufferedReader(new InputStreamReader(System.in)); String cadenaA=entradaA.readLine(); n1=Integer.parseInt(cadenaA); System.out.println("Dividendo "); BufferedReader entradaB=new BufferedReader(new InputStreamReader(System.in)); String cadenaB=entradaA.readLine(); n2=Integer.parseInt(cadenaB);

Circuito n=new Circuito (v,f); System.out.println(" El voltaje para V es " +n.calcir()); System.out.println(" El voltaje para F es " +n.calcir1()); System.out.println(" La suma de los dos es " +n.suma()); } }

(MILLAS)

import java.io.*; public class Banco1 { public static void main(String[] args) { double dd=24; double p=0.05; double pd=dd*p; double A=2002-1627; double td= A*pd+dd; System.out.println("El dinero al 31 de diciembre de 2002 es : " +td);

Escribe un programa que obtenga la media de un arreglo de tipo flotante. import java.io.*; public class Main { public Main() { } public static void main(String[] args)throws IOException { BufferedReader in = new BufferedReader(new InputStreamReader(System.in)); int tam; System.out.println("\n Ingresa el numero de datos\n"); System.out.print(" Ingresa los datos : "); tam = Integer.parseInt(in.readLine( )); System.out.println( ); if(tam > 1){ int arreglo[] = new int[tam]; for(int i = 0; i < arreglo.length; i++){ System.out.print(" Ingrese el elemento " + i + " : "); arreglo[ i ] = Integer.parseInt(in.readLine()); } System.out.println("\n Resultados \n"); double aux_media = media(arreglo); System.out.println(" media : " + aux_media); } else{ System.out.println("\n el numero de elementos no es valido"); } System.out.println(); } public static double media(int arr[]){ double sum = 0.0; for(int i = 0; i < arr.length ; i++){ sum += arr[i]; } return sum / arr.length; } }

Euclides e=new Euclides(n1,n2); System.out.println("El M.C.D. :" +e.calcf());

(RESISTENCIA) } }

Realice un programa en java que llene un arreglo de forma aleatoria con números de tipo entero y ordene el arreglo de forma accedente. Realizar un programa en java dentro de un arreglo regrese el numero de 0 que se encuentre del arreglo. import java.io.*; public class Main { public Main() { } public static void main(String[] args)throws IOException { BufferedReader keep = new BufferedReader(new InputStreamReader(System.in)); System.out.println(" Ingrese el numero : "); int narreglo = Integer.parseInt(keep.readLine( )); int arreglo[] = new int[narreglo]; for(int i = 0; i < arreglo.length; i++){ arreglo[ i ]= (int)(Math.random()*5); System.out.println("arreglos = " + arreglo[ i ]); } int r = NumerosCeros(arreglo); if(r==1){ System.out.println(" son " + r+ " cero"); }else{ System.out.println(" son " + r+ " ceros"); } } public static int NumerosCeros(int n[]){ int r =0; for(int k = 0; k
import java.io.*; public class Main { public Main() { } public static void main(String[] args)throws IOException { BufferedReader keep=new BufferedReader(new InputStreamReader(System.in)); System.out.println(" Ingrese el Numero : "); int narreglo = Integer.parseInt(keep.readLine()); int[] ordena=new int[narreglo]; for(int i = 0; i < ordena.length; i++){ ordena[ i ]= (int)(Math.random()*50); System.out.println("Arreglos = " + ordena[ i ]); } MenorMayor(ordena); System.out.println("ORDENANDOS " ); for(int j=0;j 0; i--) { if (orden[i] < orden[i - 1]) { r = orden[i - 1]; orden[i - 1] = orden[i]; orden[i] = r; } }

Crear un programa en java que se encargue de decir un arreglo de tipo entero y que regrese el resultado de sumar solo en números pares que hay dentro de la recta import java.math.*; import java.util.*; public class Arreglo { int n; /** Creates a new instance of Arreglo */ public Arreglo(int n) { this.n=n; } public void manipularArreglo(){ int a[]=new int[n]; for(int i=0; i
Crear un programa en java que obtenga un arreglo de palabras y las ordenes alfabéticamente. import java.util.*; import java.io.*; public class Main { public Main() { } public static void main(String[] args)throws IOException { BufferedReader almacena=new BufferedReader (new InputStreamReader(System.in)); String palabra = ""; System.out.println("Ingresa la palabra: "); palabra=almacena.readLine(); char arreglo[] = new char [palabra.length()]; for(int i=0; i<palabra.length(); i++){ arreglo[i]=palabra.charAt(i); } Arrays.sort(arreglo); System.out.print("La Palabra es : "); for(int i=0; i<palabra.length(); i++){ System.out.print(arreglo[i]); } } // TODO code application logic here }

public static void main(String[] args)throws IOException { int n; System.out.println(" INTRODUCE EL VALOR DE N "); BufferedReader entradan=new BufferedReader(new InputStreamReader(System.in)); String cadenan = entradan.readLine(); n=Integer.parseInt(cadenan); Arreglo i= new Arreglo(n); i.manipularArreglo (); // TODO code application logic here } }

Realiozar un programa que determine un numero en condiciones mCn = __m!___ n!(m-n) import java.math.*; public class Convinacion { int m,n; public Convinacion(int m, int n) { this.m = m; this.n = n; } public double calcM(){ int rm=1; for(int i=1; i<=m; i++) rm=rm*i; return rm; } public double calcN(){ int rn=1; for(int i=1; i<=n; i++) rn=rn*i; return rn; } public double calmnm(){ int rmnm = (int) (calcN() * (m - n)); return rmnm; } public double calFinal(){ int rf = (int) (calcM() / calmnm()); return rf; } } import java.io.*; public class Main { public static void main(String[] args)throws IOException{ int m,n; System.out.println("Ingresa el valor m "); BufferedReader entradaA=new BufferedReader(new InputStreamReader(System.in)); String cadenaA=entradaA.readLine(); m=Integer.parseInt(cadenaA); System.out.println("Ingresa el valor n "); BufferedReader entradaB=new BufferedReader(new InputStreamReader(System.in)); String cadenaB=entradaA.readLine(); n=Integer.parseInt(cadenaB); Convinacion c=new Convinacion(m,n); System.out.println("El numero de convinaciones es :" +c.calFinal()); } }

import java.math.*; public class Distancia { float v,t; /** Creates a new instance of Distancia */ public Distancia(float v,float t) { this.v=v; this.t=t; } public float calcD(){ float D; D=(v*t); return D; } } import java.io.*; public class Main { public Main() { } public static void main(String[] args)throws IOException { float v,t; System.out.println("Coeficiente V"); BufferedReader entradaV = new BufferedReader(new InputStreamReader(System.in)); String cadenaV = entradaV.readLine(); v = Float.parseFloat(cadenaV); System.out.println("Coeficiente T"); BufferedReader entradaT = new BufferedReader(new InputStreamReader(System.in)); String cadenaT = entradaT.readLine(); t= Float.parseFloat(cadenaT); Distancia T= new Distancia (v,t ); System.out.println(T.calcD()); // TODO code application logic here }

}

import java.io.*; public class Main { public static void main (String jma[]) throws IOException{ BufferedReader teclado = new BufferedReader(new InputStreamReader(System.in)); double[][] m1 = new double[3][3]; double[][] m2 = new double[3][3]; double[][] rm = new double[3][3]; System.out.println ("Multiplicacion de Matrices de 3*3 \n AMIGO Ingresa los numeros segun las cordenadas"); // almacenamiento de la matriz 1 System.out.println ("LA Primera Matriz L1 :\n"); for (int i=0; i<m1.length; i++) { for (int j=0; j<m1[i].length; j++) { System.out.print ("L1("+i+","+j+") = "); m1[i][j] = Double.parseDouble(teclado.readLine( )); } System.out.println (); } // almacenamiento de la matriz 2 System.out.println ("LA Segunda Matriz L2 :\n"); for (int i=0; i<m2.length; i++) { for (int j=0; j<m2[i].length; j++) { System.out.print ("L1("+i+","+j+") = "); m2[i][j] = Double.parseDouble(teclado.readLine( )); } System.out.println (); } // multiplik la matriz 1 * matriz 2 System.out.println ("LA MULTIPLICACION DE TU MATRIZ ES :\n"); for (int i=0; i
import java.io.*; import java.util.*; public class Main { /** Creates a new instance of Suma */ public static void main(String []args)throws IOException{ BufferedReader entradaM1= new BufferedReader (new InputStreamReader(System.in)); int M1[][]=new int[3][3]; int M2[][]=new int[3][3]; int R[][]=new int[3][3]; int i, j; // Matriz 1 for (i=0; i<M1.length; i++){ for(j=0; j<M1[i].length; j++){ System.out.println("Introduce los valores de la Matriz 1" ); M1[i][j]= Integer.parseInt(entradaM1.readLine()); } } //Matriz 2 for (i=0; i<M2.length; i++){ for(j=0; j<M2[i].length; j++){ System.out.println("Introduce los valores de la Matriz 2"); M2[i][j]= Integer.parseInt(entradaM1.readLine()); } } //Matriz R System.out.println("SUMA de la Matriz "); for (i=0; i
import java.io.*; import java.util.*; public class Main { public static void main(String []args)throws IOException{ BufferedReader entradaM1= new BufferedReader (new InputStreamReader(System.in)); int M1[][]=new int[3][3]; int M2[][]=new int[3][3]; int R[][]=new int[3][3]; int i, j; // Matriz 1 for (i=0; i<M1.length; i++){ for(j=0; j<M1[i].length; j++){ System.out.println("Introduce los valores de la Matriz 1" ); M1[i][j]= Integer.parseInt(entradaM1.readLine()); } } //Matriz 2 for (i=0; i<M2.length; i++){ for(j=0; j<M2[i].length; j++){ System.out.println("Introduce los valores de la Matriz 2"); M2[i][j]= Integer.parseInt(entradaM1.readLine()); } } //Matriz R System.out.println("RESTA de la Matriz "); for (i=0; i
} } }// SUMA }//Resta

import java.util.Vector; public class Beatles { public static void main(String[] args) { Vector band = new Vector (); band.addElement ("Paul"); band.addElement ("Pete"); band.addElement ("John"); band.addElement ("George"); System.out.println (band); band.removeElementAt (1); System.out.println (band); System.out.println ("En la posición 1 esta: " + band.elementAt (1)); band.insertElementAt ("Ringo", 2); System.out.println ("Tamaño de la banda: " + band.size ()); for (int i=0; i
} /*Declare una clase Amigos, en cuyo metodo principal: 1.- Se cree el objeto de tipo Vector amigos. 2.- Introdusca a 5 de sus amigos. 3.- Se imprima la lista de sus amigos.*/

/*Declare una clase Amigos, en cuyo metodo principal: 1.- Se cree el objeto de tipo Vector amigos. 2.- Introdusca a 5 de sus amigos. 3.- Se imprima la lista de sus amigos.*/

package p30eje4; import java.util.Vector; import java.io.*; public class Amigos { public static void main(String[] args)throws IOException { BufferedReader t = new BufferedReader(new InputStreamReader(System.in)); Vector amigos = new Vector (); System.out.print("Nombre "); String nombre1 = t.readLine(); System.out.print("Nombre "); String nombre2 = t.readLine(); System.out.print("Nombre "); String nombre3 = t.readLine(); System.out.print("Nombre "); String nombre4 = t.readLine(); System.out.print("Nombre "); String nombre5 = t.readLine(); amigos.addElement (nombre1); amigos.addElement (nombre2); amigos.addElement (nombre3); amigos.addElement (nombre4); amigos.addElement (nombre5); System.out.println("\nTienes en total " + amigos.size() + " amigos y son : " + amigos + "\n"); } }

package p30eje4; import java.util.Vector; import java.io.*; public class Main { public static void main(String[] args) { Vector amigos = new Vector (); amigos.addElement ("sexy"); amigos.addElement ("edwin"); amigos.addElement ("Alejandro"); amigos.addElement ("aduardo"); amigos.addElement ("Nubia"); System.out.println("Introdusca el nombre de sus amigos:\n"); System.out.println ("En total usted tiene " + amigos.size () + " amigos y son: " ); for (int i=0; i
/* Diseñar un programa que calcule el promedio de 5 valores. */ import java.io.*; public class Guia21 { public static void main(String[] args) throws IOException { BufferedReader t = new BufferedReader(new InputStreamReader(System.in)); System.out.println("Determinar el promedio de cinco valores."); System.out.println(); System.out.println("Introdusca el primer valor:"); int n1 = Integer.parseInt(t.readLine()); System.out.println(); System.out.println("Introdusca el segundo valor:"); int n2 = Integer.parseInt(t.readLine()); System.out.println();

/* Diseñe un programa que calcule la hipotenusa de un triangulo rectangulo. */ import java.io.*; public class Guia22 { public static void main(String[] args) throws IOException { BufferedReader t = new BufferedReader(new InputStreamReader(System.in)); System.out.println("Calcule la hipotenusa de un triangulo rectangulo."); System.out.println(); System.out.println("a^2 = b^2 + c^2"); System.out.println(); System.out.println("Introdusca el primer Cateto:"); int n1 = Integer.parseInt(t.readLine()); System.out.println();

System.out.println("Introdusca el tercer valor:"); int n3 = Integer.parseInt(t.readLine()); System.out.println(); System.out.println("Introdusca el cuarto valor:"); int n4 = Integer.parseInt(t.readLine()); System.out.println(); System.out.println("Introdusca el quinto valor:"); int n5 = Integer.parseInt(t.readLine()); System.out.println(); int res1 = n1+n2+n3+n4+n5; double res2 = res1/5; System.out.println("El promedio es: "+ res2); }

System.out.println("Introdusca el segundo Cateto:"); int n2 = Integer.parseInt(t.readLine()); System.out.println(); double res1 = Math.sqrt(Math.pow(n1,2)+Math.pow(n2,2)); System.out.println("La hipotenusa es: "+ res1); }

package p30eje5; import java.util.Vector; import java.io.*; public class Main { public static void main(String[] args)throws IOException { BufferedReader t = new BufferedReader(new InputStreamReader(System.in)); Vector ficha = new Vector (); System.out.print("Nombre "); String nombre = t.readLine(); System.out.print("Edad "); int edad = Integer.parseInt(t.readLine()); System.out.print("Genero (F/M)"); char genero = t.readLine().charAt(0); System.out.print("Telefono "); int tel = Integer.parseInt(t.readLine()); ficha.addElement (nombre); ficha.addElement (edad); ficha.addElement (genero); ficha.addElement (tel); System.out.println("\nTus Datos son los siguientes:\n"); System.out.println ("Nombre : " + ficha.elementAt (0)); System.out.println ("Edad : " + ficha.elementAt (1)); System.out.println ("Genero : " + ficha.elementAt (2)); System.out.println ("Telefono : " + ficha.elementAt (3)); } }

}

}

public class GaussJordan {

Escribir un programa en java que convierta en numero decimal, binomio, octal, hexadecimal. public class Conversiones { }import java.io.*; public class Main{ public static void main (String[ ] args)throws IOException { char letra=' '; BufferedReader teclado = new BufferedReader(new InputStreamReader(System.in)); System.out.println("Conversiones"); System.out.println("a Binario"); System.out.println("b Octal "); System.out.println("c Hexadecimal"); System.out.println("f SALIR"); System.out.println("Introdusca la conversion que desee "); letra= teclado.readLine().charAt(0); switch (letra){ case 'a': int num, y=0 ; int x=0, divi; int resi[] = new int[30]; String Resultado = " "; System.out.println("Binario"); System.out.println("DAME UN NUMERO:"); num=Integer.parseInt(teclado.readLine()); do{ divi=num/2; resi[x]=num%2; num=divi; x++; }while(num rel="nofollow">0); System.out.println("binario: "); for(y=x-1;y>=0;y--) Resultado = Resultado + Integer.toString ( resi[y] ); System.out.println("Binario = : " + Resultado+ "(2)"); break; case 'b': int num1, y1=0 ; int x1=0, divi1; int resi1[] = new int[30]; String Resultado1 = " "; System.out.println(" Octal "); System.out.println("DAME UN NUMERO:"); num1=Integer.parseInt(teclado.readLine()); do{ divi1=num1/8; resi1[x1]=num1%8; num1=divi1; x1++; }while(num1>0); System.out.println("Octal: "); for(y1=x1-1;y1>=0;y1--) Resultado1 = Resultado1 + Integer.toString ( resi1[y1] ); System.out.println("Octal = : " + Resultado1+ "(8)"); break; case 'c': int num2,y2=0,x2=0,divi2; int resi2[] = new int[30]; String Resultado2 = " "; System.out.println(" Hexadecimal"); System.out.println("DAME UN NUMERO:"); num2=Integer.parseInt(teclado.readLine()); do{ divi2=num2/16; resi2[x2]=num2%16; num2=divi2; x2++; }while(num2>0); for(y2=x2-1;y2>=0;y2--) { if(resi2[y2]==10){ System.out.println("Hexadecimal = A"); }else if(resi2[y2]==11){ System.out.println("Hexadecimal = B"); }else if(resi2[y2]==12){ System.out.println("Hexadecimal = C"); }else if(resi2[y2]==13){ System.out.println("Hexadecimal = D"); }else if(resi2[y2]==14){ System.out.println("Hexadecimal = E"); }else if(resi2[y2]==15){ System.out.println("Hexadecimal = F"); }else{ System.out.println("Hexadecimal = " +resi2[y2]); } } break; case 'f': System.out.println(" SALIR"); default: break; }

/* Diseñe una aplicacion, en la cual se lea l nombre de la persona, el año de nacimento y un año a futuro y de como resultado la edad de esa persona de la siguiente forma:

/* Elaborar un programa para calcular el costo de un automovil, tomando en cuenta las siguientes opciones de modelo:

double r1[] = {1,1,2,9}; double r2[] = {2,4,-3,1}; double r3[] = {3,6,-5,0}; /** Creates a new instance of GaussJordan */ public GaussJordan() { for(int i=0; i
Engache HOLA nombre TU EDAD EN EL AÑO añoFuturo SERA edadResultante. */ import java.io.*; public class Guia23 { public static void main(String[] args) throws IOException { BufferedReader t = new BufferedReader(new InputStreamReader(System.in)); System.out.println("Escribe tu nombre."); System.out.println(); System.out.println("Natacion temp>85");

Descuento a credito Chevy

de contado 6% 13%

Cutlas 8% 15% Fiesta 9%

System.out.println("Tenis temp<=85"); System.out.println("Golf temp>32 y

temp>70 y

15% 10%

Cavalier

16% temp<=70");

Taurus 9% 15%

System.out.println("Esquí

temp>10 y

temp<=32"); System.out.println("Marcha temp<=10"); System.out.println(); System.out.println("Introdusca la temperatura en grados Farenhait"); int temp = Integer.parseInt(t.readLine()); if (temp>85){ System.out.println("El deporte apropiado es Natacion"); } if (temp>70 && temp<=85){ System.out.println("El deporte apropiado es Tenis"); } if (temp>32 && temp<=70){ System.out.println("El deporte apropiado es Golf"); } if (temp>10 && temp<=32){ System.out.println("El deporte apropiado es Esqui"); } if (temp<=10){ System.out.println("El deporte apropiado es la Marcha"); }System.out.println(); } }

El programa desplegara un menu con tres modelos diferentes, el usuario inroducira el modelos y se despliega el costo total tanto el porcentaje de enganche a credito como el descuento si se paga de contado.*/ import java.io.*; public class Guia24 { public static void main(String[] args) throws IOException { BufferedReader t = new BufferedReader(new InputStreamReader(System.in)); System.out.println("LISTA DE AUTOS EN EXISTENCIA"); System.out.println(""); System.out.println("1 .- Chevy"); System.out.println("2 .- Cutlas"); System.out.println("3 .- Fiesta"); System.out.println("4 .- Cavalier"); System.out.println("5 .- Taurus"); System.out.println("6 .- Salir"); System.out.println(""); System.out.println("Escoja la opcion del auto que decea conocer"); System.out.println(""); int opcion = Integer.parseInt(t.readLine()); switch (opcion){ case 1: Guia244 a = new Guia244 (); System.out.println ("El costo de contado con el 13% de descuento es de "+ a.precioContadoChevy () ); System.out.println ("El enganche por pago a credito es del 6% el total es de "+ a.totalEngancheChevy () ); break; case 2: Guia244 b= new Guia244 (); System.out.println ("El costo de contado con el 15% de descuento es de "+ b.precioContadoCutlas () ); System.out.println ("El enganche por pago a credito es del 8% el total es de "+ b.totalEngancheCutlas () ); break; case 3: Guia244 c = new Guia244 (); System.out.println ("El costo de contado con el 15% de descuento es de "+ c.precioContadoFiesta () ); System.out.println ("El enganche por pago a credito es del 9% el total es de "+ c.totalEngancheFiesta () ); break; case 4: Guia244 d= new Guia244 (); System.out.println ("El costo de contado con el 16% de descuento es de "+ d.precioContadoCavalier () ); System.out.println ("El enganche por pago a credito es del 10% el total es de "+ d.totalEngancheCavalier () ); break; case 5: Guia244 e = new Guia244 (); System.out.println ("El costo de contado con el 15% de descuento es de "+ e.precioContadoTaurus () ); System.out.println ("El enganche por pago a credito es del 9% el total es de "+ e.totalEngancheTaurus () ); break; case 6: System.exit(0); break; } } }

for(int i=0; i
Tello,david_pec2_hie
November 2019 12
Evelin Tello
August 2019 10
Prog.de Tello
October 2019 9