Last active
July 22, 2022 04:43
-
-
Save EmmaG2/7a2515ab88d455d3973ac2e51142e950 to your computer and use it in GitHub Desktop.
This file contains 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 java.util.Scanner; | |
public class Main { | |
public static Scanner sc = new Scanner(System.in); | |
public static void main(String[] args) { | |
System.out.println(mensajesOpcionales()); | |
} | |
public static String mayorOMenor() throws NumberFormatException { | |
int userInputNumberOne, userInputNumberTwo, maxNumber, minNumber; | |
System.out.println("Ingrese sus numeros"); | |
userInputNumberOne = sc.nextInt(); | |
userInputNumberTwo = sc.nextInt(); | |
maxNumber = Math.max(userInputNumberOne, userInputNumberTwo); | |
minNumber = Math.min(userInputNumberOne, userInputNumberTwo); | |
return "Mas grande: " + maxNumber + ", diferencia: " + (maxNumber - minNumber); | |
} | |
public static String inTheRange() { | |
int numberLimit, numberTest; | |
System.out.println("Limite y num a probar:"); | |
numberLimit = sc.nextInt(); | |
numberTest = sc.nextInt(); | |
if (numberTest < numberLimit) return numberTest + ": Dentro del rango"; | |
return numberTest + ": Fuera del rango"; | |
} | |
public static String otherInTheRange() { | |
int numberLimitOne, numberLimitTwo, numberTest; | |
System.out.println("primer limite, segundo limite, num test: "); | |
numberLimitOne = sc.nextInt(); | |
numberLimitTwo = sc.nextInt(); | |
numberTest = sc.nextInt(); | |
if (numberTest >= numberLimitOne && numberTest <= numberLimitTwo) return numberTest + ": Dentro de los rangos"; | |
return numberTest + ": Fuera de los rangos"; | |
} | |
public static String iLikeAnimals() { | |
String animalName; | |
System.out.println("Ingresa el nombre de tu animal favorito"); | |
animalName = sc.nextLine(); | |
animalName = animalName.toUpperCase(); | |
if (animalName.equals("TORTUGAS")) return "Me encantan las tortugas"; | |
return "Ese animal es bonito, pero prefiero las tortugas"; | |
} | |
public static String clima() { | |
String userResponse; | |
System.out.println("Esta lloviendo?(Si/No)"); | |
userResponse = sc.nextLine(); | |
userResponse = userResponse.toUpperCase(); | |
if (userResponse.equals("NO")) return "Bonito dia"; | |
System.out.println("Hace mucho viento?(Si/No)"); | |
userResponse = sc.nextLine(); | |
userResponse = userResponse.toUpperCase(); | |
if (userResponse.equals("NO")) return "Lleva una sombrilla"; | |
return "Hace mucho viento para salir con sombrilla"; | |
} | |
public static String edadPermitida() { | |
int edadUsuario; | |
System.out.println("Dime tu edad:"); | |
edadUsuario = sc.nextInt(); | |
if (edadUsuario > 30) return "Nunca es tarde para aprender ¿Qué curso tomaremos?"; | |
if (edadUsuario >= 18 && edadUsuario <= 29) return "Es un momento excelente para impulsar tu carrera."; | |
return "¿Sabes hacia dónde dirigir tu futuro? Seguro puedo ayudarte."; | |
} | |
public static String mensajesOpcionales() { | |
int option; | |
System.out.println("Ingresa un numero"); | |
option = sc.nextInt(); | |
if (option == 1) return "Hoy aprenderemos sobre coding"; | |
if (option == 2) return "Que tal tomar un curso de marketing digital?"; | |
if (option == 3) return "Hoy es un gran dia para comenzar a aprender sobre disenio"; | |
if (option == 4) return "Y si aprendemos algo de negocios online?"; | |
if (option == 5) return "Veamos un par de clases sobre produccion audiovisual"; | |
if (option == 6) return "Tal vez sea bueno desarrollar una habilidad blanda en platzi"; | |
return "Ingrese una opcion valida"; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment