fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. unsigned int a, b, dzielnik;
  7.  
  8. cout << "Podaj dwie liczby: " << endl;
  9. cin >> a;
  10. cin>> b;
  11.  
  12. while( b != 0)
  13. {
  14. dzielnik = b;
  15. b = a % b;
  16. a = dzielnik;
  17.  
  18. }
  19.  
  20. cout << "NWD = " << a << endl;
  21.  
  22.  
  23. return 0;
  24. }
Success #stdin #stdout 0s 5292KB
stdin
Standard input is empty
stdout
Podaj dwie liczby: 
NWD = 1