Skip to content

Commit

Permalink
Reto #0 - Java
Browse files Browse the repository at this point in the history
  • Loading branch information
Ernesto Albarez committed Jun 28, 2023
1 parent e70b92f commit 05e0424
Showing 1 changed file with 32 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
/*
Reto #0: EL FAMOSO "FIZZ BUZZ"
* Escribe un programa que muestre por consola (con un print) los
* números de 1 a 100 (ambos incluidos y con un salto de línea entre
* cada impresión), sustituyendo los siguientes:
* - Múltiplos de 3 por la palabra "fizz".
* - Múltiplos de 5 por la palabra "buzz".
* - Múltiplos de 3 y de 5 a la vez por la palabra "fizzbuzz".
*/

public class ernestoalbarez {
public static void main(String[] args) {
for (int i=1; i<=100; i++) {
StringBuilder output = new StringBuilder();

if (i % 3 == 0) {
output.append("Fizz");
}
if (i % 5 == 0) {
output.append("Buzz");
}

System.out.println(
output.length()>0 ?
output.toString() :
String.valueOf(i)
);
}
}
}

0 comments on commit 05e0424

Please sign in to comment.