Advertisement
Guest User

Untitled

a guest
Nov 15th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int a,b;
  5. int main()
  6. {
  7.  
  8. cout<<"Introduceti numerele a si b: "<<endl;
  9. cin>>a>>b;
  10. while(a!=b)
  11. {
  12. if(a>b)
  13. a=a-b;
  14. else
  15. b=b-a;
  16. }
  17. cout<<"Cmmdc = "<<a;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement