题解 1287: 最大质因数

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

最大质因数

摘要:解题思路1. #define M(a,b) (a>b?a:b) 这是一个宏定义,用于返回两个数中的较大值。2. searchmax 函数用于寻找一……

aaaaaaaaaaaaaaaaaaa

摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&a……

P1020-题解(C语言代码)

摘要:```c#include#includeintfun(intn){//判断是否是质数if(n=1;i--){//从大往小找if(n%i==0){if(fun(i)){returni;}}}}intma……