Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- // funkcja obliczająca NWD dwóch liczb
- int nwd(int x, int y) {
- int r;
- while (y != 0) {
- r = x % y;
- x = y;
- y = r;
- }
- return x;
- }
- // funkcja obliczająca NWD trzech liczb
- int nwd(int x, int y, int z) {
- return nwd(nwd(x, y), z);
- }
- int main() {
- int x, y, z;
- cout << "Podaj trzy liczby: ";
- cin >> x >> y >> z;
- cout << "Najwiekszy wspolny dzielnik dla " << x << ", " << y << " i " << z << " to: " << nwd(x, y, z) << endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement