diff options
| author | E7-87-83 <fungcheokyin@gmail.com> | 2021-04-05 04:14:31 +0800 |
|---|---|---|
| committer | E7-87-83 <fungcheokyin@gmail.com> | 2021-04-05 04:14:31 +0800 |
| commit | 0594f4a7e117026ec4eee4bf2de65cecf03f4396 (patch) | |
| tree | 56216f9ea9b6211fedc0f44d1b1be68cb0e1c63e /challenge-105 | |
| parent | d5ff10db3ea3e9e6e150316af0d4e4c0e2a37fe1 (diff) | |
| download | perlweeklychallenge-club-0594f4a7e117026ec4eee4bf2de65cecf03f4396.tar.gz perlweeklychallenge-club-0594f4a7e117026ec4eee4bf2de65cecf03f4396.tar.bz2 perlweeklychallenge-club-0594f4a7e117026ec4eee4bf2de65cecf03f4396.zip | |
challenges
Diffstat (limited to 'challenge-105')
| -rw-r--r-- | challenge-105/cheok-yin-fung/perl/ch-1.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/challenge-105/cheok-yin-fung/perl/ch-1.pl b/challenge-105/cheok-yin-fung/perl/ch-1.pl index 3a8ab8c2f5..b5b5f930e9 100644 --- a/challenge-105/cheok-yin-fung/perl/ch-1.pl +++ b/challenge-105/cheok-yin-fung/perl/ch-1.pl @@ -13,7 +13,7 @@ my $pow = 1; my $N = int $ARGV[0]; my $k = $ARGV[1]; -print "WARN: Recommend to take the result from Newton's method if two methods dispute"; +print "WARN: Recommend to take the result from Newton's method if two methods dispute\n"; print "WARN: N is large; probably dispute between two methods \n" if $N > 9; # parameter chosen by testing print "WARN: N is too large; probably inaccurate result(s) \n" |
