[問題]新手提問-計算複利問題(subroutine)
不好意思!我已反覆看了這個程式許多次還是搞不懂哪裡出了問題,
麻煩板上高手解惑。
我的困惱是,第二個subroutine無法計算出正確數值,得出的值永遠是$principal
這個輸入值。謝謝!
sub getInfo {
print " What is the principal investment amount?\n";
chomp ($principal = <STDIN>);
print "What is the anual interest rate?\n";
chomp ($intRate = <STDIN>);
print "How many times is the interest compound per year?\n";
chomp ($num = <STDIN>);
print "How many year is the money invested or borrowed for?\n";
chomp ($years = <STDIN>);
($principal, $inRate, $num, $years);
}
sub compoundInterest {
my $P = shift;
my $r = shift;
my $r = $r/100;
my $n = shift;
my $t = shift;
$value = $P*(1+$r/$n)**($n*$t);
return $value;
}
$answer = "y";
while ($answer eq "y") {
($principal, $inRate, $num, $years) = &getInfo;
$value = &compoundInterest($principal, $inRate, $num, $years);
print "The value of your investment after $years years will be $value.\n";
print "Would you like to run another compound interest calculation? (y/n)\n";
chomp ($answer = <STDIN>);
}
--
※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 47.186.192.177
※ 文章網址: https://www.ptt.cc/bbs/Perl/M.1531636033.A.8C2.html
→
07/15 18:40,
6年前
, 1F
07/15 18:40, 1F
→
07/16 10:07,
6年前
, 2F
07/16 10:07, 2F
推
07/16 15:10,
6年前
, 3F
07/16 15:10, 3F
Perl 近期熱門文章
PTT數位生活區 即時熱門文章