欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

P1075 质因数分解 题解

程序员文章站 2022-03-14 09:48:59
...

P1075 质因数分解 题解
P1075 质因数分解 题解

#include<stdio.h>
#include<ctype.h>
#include<string.h>
#include<math.h>
#include<stdlib.h>

int main()                                
{
    int n, i, j;
	scanf("%d", &n);
	for (i = 2; i <= sqrt(n); i++){
		if (n%i == 0){
			printf("%d", n/i);
			return 0;
		}
	}
    
}
相关标签: 洛谷 c语言