摘要: 已知正整数n是两个不同的质数的乘积,试求出两者中较大的那个质数。 #include<stdio.h> #include<stdlib.h> #include<math.h> int panshu(int n) { int arr[1000]; int i,j=0; int count = 0; fo 阅读全文
posted @ 2022-07-17 11:51 kangobs 阅读(94) 评论(0) 推荐(0)