Computer Science, asked by Anonymous, 10 months ago

Write a programme to generate the divisor of a given no

Answers

Answered by iwdie
0

add more deatils.

if you are writing  in c++ for finding every divisor of a number it would be -

#include <bits/stdc++.h>  

// function to print the divisors  

void printDivisors(int n)  

{  

for (int i=1;i<=n;i++)  

 if (n%i==0)  

  printf("%d ",i);  

}  

/* Driver program to test above function */

int main()  

{  

printf("The divisors of 100 are: \n");  

printDivisors(100);  

return 0;  

}  

Similar questions