add: calculator example to x-tba
This commit is contained in:
21
x-tba/foundations/calc/02-if/main.go
Normal file
21
x-tba/foundations/calc/02-if/main.go
Normal file
@@ -0,0 +1,21 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"os"
|
||||
"strconv"
|
||||
)
|
||||
|
||||
func main() {
|
||||
// lesson: if
|
||||
|
||||
if len(os.Args) != 3 {
|
||||
fmt.Println("Usage: calc <number1> <number2>")
|
||||
return
|
||||
}
|
||||
|
||||
a, _ := strconv.Atoi(os.Args[1])
|
||||
b, _ := strconv.Atoi(os.Args[2])
|
||||
|
||||
fmt.Printf("%v + %v = %v\n", a, b, a+b)
|
||||
}
|
Reference in New Issue
Block a user