Skip to content

Instantly share code, notes, and snippets.

@orian
Last active August 29, 2015 14:07
Show Gist options
  • Save orian/6e407ded7944966fa670 to your computer and use it in GitHub Desktop.
Save orian/6e407ded7944966fa670 to your computer and use it in GitHub Desktop.
// Projekt6.1.1
package main
import "fmt"
func NWD(a, b int) int {
for {
if a > b {
a = a - b
} else if a < b {
b = b - a
} else {
return a
}
}
}
func main() {
var a, b int
fmt.Println("Wpisz A: ")
fmt.Scanf("%d", &a)
fmt.Println("Wpisz B: ")
fmt.Scanf("%d", &b)
w := NWD(a, b)
fmt.Printf("Największy wspólny mianownik liczb %d i %d to %d\n", a, b, w)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment