2013年7月3日水曜日

開発環境

『初めてのPerl 第6版』(Randal L. Schwartz, Tom Phoenix, brian d foy 共著、近藤 嘉雪 訳、オライリー・ジャパン、2012年、ISBN978-4-87311-567-2)の2章(スカラーデータ)の2.11(練習問題)4を解いてみる。

その他参考書籍

4.

コード(BBEdit)

sample.pl

#!/usr/bin/env perl
use strict;
use warnings;
use utf8;
binmode STDOUT, ':utf8';
binmode STDIN, ':utf8';
use Math::Trig qw(pi);

chomp(my $a = <STDIN>);
chomp(my $b = <STDIN>);
print "$a * $b = ", $a * $b, "\n";

入出力結果(Terminal)

$ ./sample.pl
5
10
5 * 10 = 50
$

ちなみにpython3.3の場合。

コード(BBEdit)

sample.py

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

a = float(input())
b = float(input())

print("{0:g} * {1:g} = {2:g}".format(a, b, a * b))

入出力結果(Terminal)

$ ./sample.py
5
10
5 * 10 = 50
$

0 コメント:

コメントを投稿