Skip to content

Instantly share code, notes, and snippets.

@zgunz42
Created November 20, 2021 13:10
Show Gist options
  • Save zgunz42/6b7c6bcf46074d96466ad34222bf7b02 to your computer and use it in GitHub Desktop.
Save zgunz42/6b7c6bcf46074d96466ad34222bf7b02 to your computer and use it in GitHub Desktop.
package main
import "fmt"
func mars_age(age int) int {
return age * 365/687
}
func main() {
var age int
fmt.Scanln(&age)
mars := mars_age(age)
fmt.Println(mars)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment