Skip to content

Instantly share code, notes, and snippets.

@tomcha
Created December 1, 2015 03:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tomcha/5b6ec9bd1a9a6354e498 to your computer and use it in GitHub Desktop.
Save tomcha/5b6ec9bd1a9a6354e498 to your computer and use it in GitHub Desktop.
25
#!/usr/bin/env perl
use strict;
use warnings;
my $year;
my $month;
my $day;
print '誕生年を入力して下さい>>>';
$year = <STDIN>;
chomp $year;
print '誕生月を入力して下さい>>>';
$month = <STDIN>;
chomp $month;
print '誕生日を入力して下さい>>>';
$day = <STDIN>;
chomp $day;
print "あなたの誕生日は$year年$month月$day日です。\n";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment