Open esparig opened 2 years ago
A ver si me entero, ¿soy yo el que debe introducir los datos por consola? ¿Cómo hago que números de 2 cifras se le añade un 0 para hacerlo de 3 cifras? ¿Cómo utilizo exactamente los 15 caracteres? Creo que no se buscar con propiedad en Google, me falta terminología y exactitud (sobre todo en inglés). Gracias de verdad
A ver si me entero, ¿soy yo el que debe introducir los datos por consola?
Aquí la documentación de la clase Scanner, intenta siempre consultar fuentes fiables. Como estás leyendo de la entrada estándar (System.in), puedes o bien escribir tú por consola cuando el programa te lo pida o proporcionar un fichero. Para proporcionar un fichero de entrada por consola sería usando el operador <, en Eclipse es en "Run configurations", pestaña "common", y seleccionas el "input file" que habrás creado previamente, tal y como se explica en esta entrada de StackOverflow (otra fuente de información inagotable): https://stackoverflow.com/questions/54545107/running-program-arguments-through-eclipse-ide
¿Cómo hago que números de 2 cifras se le añade un 0 para hacerlo de 3 cifras? ¿Cómo utilizo exactamente los 15 caracteres? Creo que no se buscar con propiedad en Google, me falta terminología y exactitud (sobre todo en inglés). Gracias de verdad
Esto es lo que tienes que averiguar, intenta buscar el título de la issue + java, y consulta fuentes fiables... poco a poco comenzarás a reconocerlas... como es la primera vez te dejo aquí una página que he encontrado al buscar "formatting strings java": https://www.javatpoint.com/java-string-format
¡Suerte!
Java's
System.out.printf
function can be used to print formatted output. This exercise aims to test your understanding of formatting output using printf.To get you started, a portion of the solution is provided for you; you must format and print the input to complete the solution.
Input Format
Every line of input will contain a String followed by an integer. Each String will have a maximum of 10 alphabetic characters, and each integer will be in the inclusive range from 0 to 999.
Output Format
In each line of output there should be two columns: The first column contains the String and is left justified using exactly 15 characters. The second column contains the integer, expressed in exactly 3 digits; if the original input has less than three digits, you must pad your output's leading digits with zeroes.
Sample Input
Sample Output
Explanation
Each String is left-justified with trailing whitespace through the first 15 characters. The leading digit of the integer is the 16th character, and each integer that was less than 3 digits now has leading zeroes.
Base code
You can use the following base code:
Additional notes
This exercise has been retrieved from the Internet, I'm sure you can search for the solution, but I encourage you to try to solve it by yourself and ask for whatever clarification is needed instead. Have fun!