摘要: 一、问题描述: 二、设计思路: 三、程序流程图: 四、代码实现: #include<stdio.h> #include<math.h> int fun(int n) { int i; if(n==2) return 1; if(n%2==0) return 0; for(i=3;i<=sqrt(n) 阅读全文
posted @ 2023-06-04 15:34 软件拓荒人 阅读(33) 评论(0) 推荐(0)