開発環境
- OS X Lion - Apple(OS)
- TextWrangler(Text Editor) (BBEditの機能制限無料版、light版)
- Script言語:Perl
『初めてのPerl 第6版』(Randal L. Schwartz, Tom Phoenix, brian d foy 共著、近藤 嘉雪 訳、オライリー・ジャパン、2012年、ISBN978-4-87311-567-2)の1章(スカラーデータ)、2.12(練習問題4を解いてみる。
その他参考書籍
4.
コード(BBEdit)
sample.pl
#!/usr/bin/env perl use strict; use warnings; use utf8; use 5.016; binmode STDOUT, ':utf8'; binmode STDIN, ':utf8'; use Math::Trig; chomp(my $a = <STDIN>); chomp(my $b = <STDIN>); print "$a × $b = ", $a * $b , "\n";
入出力結果(Terminal)
$ ./sample.pl 5 10 5 × 10 = 50 $
ちなみにJavaScriptの場合。
コード(BBEdit)
var a = parseFloat($('#t0').val()), b = parseFloat($('#t1').val()), result = a + " * " + b + " = " + (a * b); $('#pre0').text(result);
pythonの場合。
コード(BBEdit)
sample.py
#!/usr/bin/env python3.3 #-*- coding: utf-8 -*- a = int(input("数値を入力: ")) b = int(input("数値を入力: ")) print("{0} * {1} = {2}".format( a, b, a * b))
入出力結果(Terminal)
$ ./sample.py 数値を入力: 5 数値を入力: 10 5 * 10 = 50 $
0 コメント:
コメントを投稿