" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
using namespace std;
void dzielniki(int n)
{
for(int i=-1*n; i<=n; i++)
{
if(i!=0 &&n%i==0)
{
cout<<i<<" ";
}
}
}
int main()
{
int t;
cin>>t;
while(t--)
{
int n;
cin>>n;
dzielniki(n);
}
return 0;
}
Mam nadzieję, że pomogłem. Jakbyś miał jakieś pytania to pisz.