精簡扼要的Perl 課程講義(四):標準輸入輸出與檔案輸入輸出
文章推薦指數: 80 %
標準輸入輸出. # 標準輸入輸出 # (1) STDIN, STDOUT, STDERR print "Enter your name:"; $input =
while(){
%hash=(%hash,split);
}
print"$_is$hash{$_}\n"forkeys%hash;
__END__
Billboy
Marygirl
Joeboy
繼續閱讀:Perl程式設計教學
Perl
G.T.Wang
個人使用Linux經驗長達十餘年,樂於分享各種自由軟體技術與實作文章。
LeaveaReply取消回覆
留言*
Name*
Email*
Website
搜尋
分類Arduino(5)
BeagleBoneBlack(1)
DIY(54)
Linux(317)
macOS(33)
Octave(15)
Perl(12)
R(47)
Windows(98)
WordPress(16)
個人(15)
免費(35)
兒童(30)
實用工具(85)
手機(13)
技巧(45)
有趣(99)
樹莓派(57)
物聯網(55)
玄學(11)
生活(209)
程式設計(137)
統計學(8)
網頁空間(36)
網頁開發(128)
虛擬化(7)
農業(42)
遊戲(9)
開箱(132)
雲端(4)
宗教
如何戒邪淫、遠離婚外情
戒淫寶典:《壽康寶鑑》白話有聲書
公益
Yahoo奇摩公益
igiving公益網
社團法人新竹縣愛心物資集發協會
台灣世界展望會
智邦公益網
©2022G.T.Wang
延伸文章資訊
- 1Perl | STDIN in Scalar and List Context - GeeksforGeeks
- 2Perl STDIN | How STDIN works in Perl? with Examples and ...
Perl STDIN is used to get input from standard console by using STDIN in perl. STDIN in perl is al...
- 3How to get input from the terminal in Perl - Stack Overflow
I'm taking questions from the terminal and sending reply with dialog, but my program takes only t...
- 4Prompt, read from STDIN, read from the keyboard in Perl
IO::Prompter. This was a very simple solution using only the core language and providing a very s...
- 5精簡扼要的Perl 課程講義(四):標準輸入輸出與檔案輸入輸出
標準輸入輸出. # 標準輸入輸出 # (1) STDIN, STDOUT, STDERR print "Enter your name:"; $input = <STDIN>; # 從STDIN...