mirror of
https://github.com/c0de-archive/hacktoberfest-2018.git
synced 2024-12-22 13:22:39 +00:00
Merge pull request #183 from grendach/gocalc
hacktoberfest-2018, simple calculator on Go
This commit is contained in:
commit
7da2346356
@ -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.
|
||||
|
31
code/golang/gocalc/gocalc.go
Normal file
31
code/golang/gocalc/gocalc.go
Normal 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)
|
||||
}
|
||||
}
|
@ -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)
|
||||
}
|
Loading…
Reference in New Issue
Block a user