赞
踩
两种写法,思路一样的,做个记录,以备后续查看
法一:
- #include <iostream>
- using namespace std;
- int main()
- {
- int n,t=1;
- cin >> n;
- if (n<2)
- {
- cout << n << "不是素数" << endl;//1既不是素数也不是合数,素数从2开始
- return 0;
- }
- for (int i = 2; i < sqrt(n)+1;i++)//也可用n/2,不过计算量要比sqrt大一些
- {
- if (n%i == 0)
- {
- t = 0;
- break;
- }
- }
- if (t) cout << n << "是素数" << endl;
- else cout << n << "不是素数" << endl;
- return 0;
- }
- #include <iostream>
- using namespace std;
- bool sushu(int n)
- {
- for (int i = 2; i < sqrt(n)+1; i++)//也可用n/2,不过计算量要比sqrt大一些
- {
- if (n%i == 0)
- return false;
- }
- return true;
- }
- int main()
- {
- int n;
- cin >> n;
- if (n<2)
- {
- cout << n << "不是素数" << endl;//1既不是素数也不是合数,素数从2开始
- return 0;
- }
- if (sushu(n)) cout << n << "是素数" << endl;
- else cout << n << "不是素数" << endl;
- return 0;
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。