Advertisement
Guest User

Untitled

a guest
Nov 30th, 2015
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. #!/usr/bin/env perl
  2.  
  3. use strict;
  4. use warnings;
  5.  
  6. my $year;
  7. my $month;
  8. my $day;
  9.  
  10. print '誕生年を入力して下さい>>>';
  11. $year = <STDIN>;
  12. chomp $year;
  13.  
  14. print '誕生月を入力して下さい>>>';
  15. $month = <STDIN>;
  16. chomp $month;
  17.  
  18. print '誕生日を入力して下さい>>>';
  19. $day = <STDIN>;
  20. chomp $day;
  21.  
  22. print "あなたの誕生日は$year年$month月$day日です。\n";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement