- #include <iostream>
- #include <cstdlib>
- using namespace std;
- int main ()
- {
- cout<<"***天才兒童的質數驗證機***"<<endl;
- re:
- int a,b=0;
- cout<<"請輸入一正整數:";
- cin>>a;
- cout<<a<<"的因數有:";
- for (int i=1; i<=a; i++)
- {
- if(a%i==0)
- {
- cout<<i<<" ";
- b++;
- }
- }
- cout<<endl<<"總共有"<<b<<"個!";
- cout<<endl;
- if(b==2)
- {
- cout<<a<<"是質數!"<<endl;
- }else
- {
- cout<<a<<"不是質數!"<<endl;
- }goto re;
-
-
- system("pause");
- return 0;
- }
複製代碼 |