forked from sammy1997/github_task
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcode.c
40 lines (33 loc) · 864 Bytes
/
code.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#include <stdio.h>
int main()
{
//this is a simple meaningless edit done by mayank jain to bring a simple change in the file.
// shaily bhatt added a do while loop to the program so that the user can run at it as long as he wants to.
//
int number, i, res =0;
do {
printf("Enter a positive integer: ");
scanf("%d",&number);
if (number>0)
{
printf("Factors of %d are:", number);
printf("1 ");
for(i=2; i <= number/2; ++i)
{
if (number%i == 0)
{
printf("%d ",i);
}
}
printf("%d \n",number);
}
else if(number<=0)
{
printf("%d is not a valid number ", number);
}
printf( " wish to continue ? press - 1 to continue, 0 to exit : " );
scanf("%d", &res);
} while ( res == 1);
return 0;
}
/*Chinmay was Here*/