Napisz program w c++ o: wypisz wspólne dzielniki a i b, wypisz ich ilość i sumę... pętla for lub while!!!! Proszę szybko!!!
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2025 KUDO.TIPS - All rights reserved.
#include <iostream>
using namespace std;
int main()
{
int a,b,suma=0,ilosc=0;
cout <<"Podaj liczbe a ";
cin >> a;
cout <<"Podaj liczbe b ";
cin >>b;
if (a<b)
{
int c=a;
a=b;
b=c;
}
for (int i=1;i<=a;i++)
{
if (a%i==0 && b%i==0)
{
cout <<"wspolny dzielnik to "<<i<<endl;
ilosc++;
suma=i+suma;
}
}
cout<<"ilosc wspolnych dzielnikow to "<<ilosc<<endl;
cout<<"ich suma to "<<suma;
cin.ignore();
getchar();
return 0;
}