Selaa lähdekoodia

Merge pull request #81 from domainname/master

12.1章节翻译完成
无闻 11 vuotta sitten
vanhempi
commit
95b8c31fb6
1 muutettua tiedostoa jossa 10 lisäystä ja 14 poistoa
  1. 10 14
      eBook/12.1.md

+ 10 - 14
eBook/12.1.md

@@ -81,7 +81,6 @@ input, err := inputReader.ReadString('\n')
 第二个例子从键盘读取输入,使用了 `switch` 语句:
 
 **Listing 12.3—switch_input.go:**
-
 ```go
 package main
 import (
@@ -123,25 +122,22 @@ func main() {
     default: fmt.Printf("You are not welcome here! Goodbye!\n")
     }
 }
-```
+```
 
 注意:Unix和Windows的行结束符是不同的!
 
 **练习**
 
-**Exercise 12.1:** word_letter_count.go
-Write a program which reads text from the keybord. When the user enters ‘S’ in order to signal the end of the input, the program shows 3 numbers:
-i) the number of characters including spaces (but excluding ‘\r’ and ‘\n’)
-ii) the number of words
-iii) the number of lines
-
-**Exercise 12.2:** calculator.go
-Make a simple (reverse polish notation) calculator. This program accepts input from the user in the
-form of integers (maximum 999999) and operators (+, -, *, /).
-
-The input is like this: number1 ENTER number2 ENTER operator ENTER result is displayed.
+**练习 12.1:** word_letter_count.go  
+编写一个程序,从键盘读取输入。当用户输入 'S' 的时候表示输入结束,这时程序输出 3 个数字:  
+i) 输入的字符的个数,包括空格,但不包括 '\r' 和 '\n'  
+ii) 输入的单词的个数  
+iii) 输入的行数
 
-The programs stops if the user inputs “q”. Use the package stack you developed in Ex. 11.3
+**练习 12.2:** calculator.go  
+编写一个简单的逆波兰式计算器,它接受用户输入的整型数(最大值 999999)和运算符 +、-、*、/。  
+输入的格式为:number1 ENTER number2 ENTER operator ENTER --> 显示结果  
+当用户输入字符 'q' 时,程序结束。请使用您在练习11.3中开发的 `stack` 包。
 
 
 ## 链接