Merge pull request #183 from grendach/gocalc

hacktoberfest-2018, simple calculator on Go
This commit is contained in:
Luke Oliff 2018-10-06 10:07:06 -07:00 committed by GitHub
commit 7da2346356
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 37 additions and 12 deletions

View File

@ -290,6 +290,12 @@ Please note that this project is released with a [Code of Conduct](CODE_OF_CONDU
- [![twitter-alt][twitter-img]](https://twitter.com/Dmytro_Litvinov)
[![github-alt][github-img]](https://github.com/DmytroLitvinov)
### Dmytro Grendach
- DevOps engineer from Zhdany, Ukraine
- Interested in Python, Golang
- [![twitter-alt][twitter-img]](https://twitter.com/dmytrogrendach)
[![github-alt][github-img]](https://github.com/grendach)
### duongoku
- I'm a student and I'm in last year of highschool.
- I'm interested in competitive programming, physics, calculus and tech stuff.

View File

@ -0,0 +1,31 @@
package main
import (
"fmt"
)
var num1 int64
var num2 int64
var action string
func main() {
fmt.Println("Enter firs number:")
fmt.Scan(&num1)
fmt.Println("Enter second number:")
fmt.Scan(&num2)
fmt.Println("Enter operation('+', '-', '*' or '/'):")
fmt.Scan(&action)
if action == "+" {
fmt.Printf("%v + %v = %v\n", num1, num2, num1+num2)
}
if action == "-" {
fmt.Printf(" %v - %v = %v\n", num1, num2, num1-num2)
}
if action == "*" {
fmt.Printf(" %v * %v = %v\n", num1, num2, num1*num2)
}
if action == "/" {
fmt.Printf(" %v / %v = %v\n", num1, num2, num1/num2)
}
}

View File

@ -1,12 +0,0 @@
package main
import (
"fmt"
)
func main() {
fmt.Println("Hi! Please enter your name...")
var inpt string
fmt.Scan(&inpt)
fmt.Printf("Hello %s, welcome on Hacktoberfest!\n", inpt)
}