You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
317 B
Perl

foreach $hour (1 .. 24){
if ($hour > 0 && $hour < 12) {
print "Good-morning.\n";
}
elsif ($hour == 12) {
print "Happy Lunch.\n";
}
elsif ($hour > 12 && $hour < 17) {
print "Good afternoon.\n";
}
else {
print "Good-night.\n";
}
}