**[Loops]D. Liang 4.16 Finding the factors of an integer**

C语言作业记录。
Description
Write a program that reads an integer n and displays all its smallest factors. For example, if the input ingeger is 120, the output should be as follows: 2 2 2 3 5

Input
An integer n (1

Output
The smallest factors of n in nondescending order, each factor per line.

Sample Input
120

Sample Output
2 2 2 3 5

#include
int main(void)
{    
     int n,a=2;
     scanf("%d",&n);
     while(n!=1){
     
        if(n%a==0)
        { n/=a;
          printf("%d\n",a);
        }
        else
         a++;
     }
     
    return 0;
}

你可能感兴趣的:(c语言作业)