Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- public class tresitooo {
- private static int opcion;
- public static void main(String[] args) {
- Scanner leer = new Scanner(System.in);
- Teclado in = new Teclado();
- System.out.println("1 = Ingrese los numeros");
- System.out.println("2 = Numeros aleatorios");
- System.out.println("3 = salir");
- int opcion = in.getInt("Seleccione una opcion");
- opciones(opcion);
- }
- public static void opciones(int opciones){
- switch(opcion) {
- case 1:
- int a, b, i, sumaA, sumaB;
- sumaA=0;
- sumaB=0;
- System.out.println("Ingrese un numero: ");
- a = leer.nextInt();
- System.out.println("Ingrese un numero: ");
- b = leer.nextInt();
- for(i=1; i<a; i++){
- if(a % i==a){
- sumaA = sumaA +1;
- }
- }
- for(i=1; i<b; i++){
- if (b % i == 0){
- sumaB = sumaB + 1;
- }
- }
- if (sumaA == b && sumaB == a){
- System.out.println("Son amigos");
- }else{
- System.out.println("No son amigos");
- }
- break;
- case 2:
- int aleatorio = 0;
- int aleatorioo = 0;
- aleatorio = (int) (Math.random() * 500);
- System.out.println(aleatorio);
- aleatorioo = (int) (Math.random() *500);
- System.out.println(aleatorioo);
- int aleatorio, aleatorioo, i, sumaAleatorio, sumaAleatorioo;
- sumaA=0;
- sumaB=0;
- System.out.println("Ingrese un numero: ");
- aleatorio = leer.nextInt();
- System.out.println("Ingrese un numero: ");
- aleatorioo = leer.nextInt();
- for(i=1; i<aleatorio; i++){
- if(aleatorio % i==aleatorio){
- sumaA = sumaA +1;
- }
- }
- for(i=1; i<aleatorioo; i++){
- if (aleatorioo % i == 0){
- sumaB = sumaB + 1;
- }
- }
- if (sumaA == aleatorioo && sumaB == aleatorio){
- System.out.println("Son amigos");
- }else{
- System.out.println("No son amigos");
- }
- break;
- case 3:
- System.exit(0);
- break;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement