開発環境
- OS X Lion - Apple(OS)
- BBEdit - Bare Bones Software, Inc., Emacs(Text Editor)
- プログラミング言語: Perl
『初めてのPerl 第6版』(Randal L. Schwartz, Tom Phoenix, brian d foy 共著、近藤 嘉雪 訳、オライリー・ジャパン、2012年、ISBN978-4-87311-567-2)の5章(入出力)の5.13(練習問題)2を解いてみる。
その他参考書籍
2.
コード(BBEdit)
sample.pl
#!/usr/bin/env perl use strict; use warnings; use 5.016; use utf8; binmode STDOUT, ':utf8'; binmode STDIN, ':utf8'; chomp( my @strs = <STDIN> ); print 1234567890 x 6, "\n"; for (@strs) { printf "%20s\n", $_; }
入出力結果(Terminal)
$ ./sample.pl hello good-bye 123456789012345678901234567890123456789012345678901234567890 hello good-bye $
ちなみにpython3.3の場合。
コード(BBEdit)
sample.py
#!/usr/bin/env python3.3 #-*- coding: utf-8 -*- strs = [] while True: s = input() if s == "": break strs.append(s) print("1234567890" * 6) for s in strs: print(s.rjust(20))
入出力結果(Terminal)
$ ./sample.py hello good-bye 123456789012345678901234567890123456789012345678901234567890 hello good-bye $
0 コメント:
コメントを投稿