程嶏清单6-5.txt
来自「< linux网络编程工具>>配套源码」· 文本 代码 · 共 10 行
TXT
10 行
print "how much is this dictionary?\n";
$price = <STDIN>;
chomp($price);
unless ($price > 65) {
print "So I have enough money to buy the dictionary.";
}
else {
print "So I don't have enough money to buy the dictionary.";
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?