2013年3月3日日曜日

開発環境

『初めての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 utf8;
use 5.016;
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
$

ちなみにJavaScriptの場合。

コード(BBEdit)

var strs = [],
    s = "",
    result = new Array(7).join("1234567890") + "\n",
    i, max;
while (true) {
    s = prompt("文字列(空白で終了)", "");
    if (/^\s*$/.test(s)) {
        break;
    }
    strs.push(s);
}
for (i = 0, max = strs.length; i < max; i += 1) {
    result += new Array(21 - strs[i].length).join(" ") + strs[i] + "\n";
}
$('#pre0').text(result);



pythonの場合。

コード(BBEdit)

sample.py

#!/usr/bin/env python3.3
#-*- coding: utf-8 -*-

import re

strs = []
while True:
    s = input("文字列(空白で終了)")
    if re.search(r"^\s*$", s):
        break
    strs.append(s)
print("1234567890" * 6)
for s in strs:
    print("%20s" % s)

入出力結果(Terminal)

$ ./sample.py
文字列(空白で終了)hello
文字列(空白で終了)good-bye
文字列(空白で終了)
123456789012345678901234567890123456789012345678901234567890
               hello
            good-bye
$

0 コメント:

コメントを投稿