Computer Science, asked by mae13, 11 months ago

write a program to print all the factors of 20

Answers

Answered by shubhammote999999
6

# include<studio.h>

int main()

{

int i,j,;

for(i=1;i<=20;i++)

{

if(i%20==0)

printf("%d",i);

}

}


Similar questions
Math, 6 months ago