forked from mouredev/retos-programacion-2023
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request mouredev#5094 from joaquinferrero/main
Reto mouredev#27 - Perl
- Loading branch information
Showing
2 changed files
with
59 additions
and
0 deletions.
There are no files selected for viewing
34 changes: 34 additions & 0 deletions
34
Retos/Reto #27 - CUENTA ATRÁS [Media]/perl/joaquinferrero.pl
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
#!/usr/bin/env perl | ||
# | ||
# Cuenta atrás | ||
# | ||
# Crea una función que reciba dos parámetros para crear una cuenta atrás. | ||
# - El primero, representa el número en el que comienza la cuenta. | ||
# - El segundo, los segundos que tienen que transcurrir entre cada cuenta. | ||
# - Sólo se aceptan números enteros positivos. | ||
# - El programa finaliza al llegar a cero. | ||
# - Debes imprimir cada número de la cuenta atrás. | ||
# | ||
# Joaquín Ferrero, 20230924 | ||
# | ||
use v5.38; | ||
use utf8; | ||
|
||
print "Valor inicial: "; chomp(my $inicio = <>); | ||
print "Segundos de espera: "; chomp(my $espera = <>); | ||
|
||
$inicio = int 0+$inicio; | ||
$espera = int 0+$espera; | ||
|
||
die "ERROR: Los valores deben ser enteros positivos\n" unless $inicio > 0 and $espera > 0; | ||
|
||
cuenta_atrás($inicio, $espera); | ||
|
||
|
||
sub cuenta_atrás($inicio, $espera) { | ||
for (reverse 0 .. $inicio) { | ||
sleep $espera; | ||
say; | ||
} | ||
} | ||
|
25 changes: 25 additions & 0 deletions
25
Retos/Reto #27 - CUENTA ATRÁS [Media]/raku/joaquinferrero.raku
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#!/usr/bin/env raku | ||
# | ||
# Cuenta atrás | ||
# | ||
# Crea una función que reciba dos parámetros para crear una cuenta atrás. | ||
# - El primero, representa el número en el que comienza la cuenta. | ||
# - El segundo, los segundos que tienen que transcurrir entre cada cuenta. | ||
# - Sólo se aceptan números enteros positivos. | ||
# - El programa finaliza al llegar a cero. | ||
# - Debes imprimir cada número de la cuenta atrás. | ||
# | ||
# Joaquín Ferrero, 20230924 | ||
# | ||
use v6; | ||
|
||
sub MAIN( | ||
Int $inicio where * > 0, #= Valor inicial | ||
Int $espera where * > 0 #= Segundos de espera | ||
) { | ||
for reverse 0 .. $inicio { | ||
sleep $espera; | ||
.say; | ||
} | ||
} | ||
|