repo.or.cz
/
perlbook.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Initial commit from the 2013 with minor fixes. From now and then,
[perlbook.git]
/
l09.pl
blob
50b779ce7cbad4810f101ec1fb4ca30a2a56783b
1
#!/usr/bin/perl -w
2
use
POSIX
;
3
4
%pipirka
= (
'Россия'
=>
13.21
,
'Украина'
=>
13.97
,
5
'Эстония'
=>
13.78
,
'Финляндия'
=>
13.78
,
6
'Монголия'
=>
12.77
);
7
8
print
"Ты откуда, братишка?
\n
"
;
9
$country
= <
STDIN
>;
10
chomp
$country
;
11
12
print
"В этой стране "
.
ceil
(
$pipirka
{
$country
})
13
.
"см - это роскошь!
\n
"
;