using namespace std;
int main()
{
int N,Toplam=0,toplamtum=0,i;
cout<<"bir tam sayi giriniz : ";
cin>>N;
for(i=1;i<=N;i++)
{
Toplam=0;
for(int j=1;j<=i;j++)
if(i%j==0)
{
Toplam=Toplam+j;
}
toplamtum+=Toplam;
cout<<i<<" icin tam bolenler toplami"<<Toplam<<endl;
}
cout<<"Tum tam bolenler toplami ="<<toplamtum<<endl;
}
Hiç yorum yok:
Yorum Gönder