開発環境
- macOS Mojave - Apple (OS)
- Emacs (Text Editor)
- Windows 10 Pro (OS)
- Strawberry Perl (WindowsのPerlの言語処理系)
- Visual Studio Code (Text Editor)
- Perl 5.28 (プログラミング言語)
初めてのPerl 第7版 (Randal L. Schwartz(著)、brian d foy(著)、Tom Phoenix(著)、近藤 嘉雪(翻訳)、嶋田 健志(翻訳)、オライリージャパン)の2章(スカラーデータ)、2.12(練習問題)4の解答を求めてみる。
コード
#!/usr/bin/env perl
use strict;
use warnings;
use v5.28;
say '4.';
say '数字を2個入力';
print '一つ目: ';
chomp(my $a = <STDIN>);
print '二つ目: ';
chomp(my $b = <STDIN>);
my $c = $a * $b;
say "$a × $b = $c";
入出力結果(Zsh、PowerShell、Terminal)
% ./sample4.pl
4.
数字を2個入力
一つ目: -1
二つ目: 2
-1 × 2 = -2
% ./sample4.pl
4.
数字を2個入力
一つ目: 0
二つ目: 10
0 × 10 = 0
% ./sample4.pl
4.
数字を2個入力
一つ目: 5
二つ目: 6
5 × 6 = 30
%
0 コメント:
コメントを投稿