返回列表 發帖

因數分解(二)-重複使用的版本

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.   int a;
  7.   while(true)//條件成立
  8.   {   
  9.        system("cls");
  10.       cout<<"請輸入一正整數: ";
  11.       cin>>a;
  12.       
  13.       cout<<a<<"的因數有: ";
  14.       for(int i=1;i<=a;i++)//1 2 3 ...a
  15.       {
  16.         if( a % i == 0)//判斷是否為因數
  17.         {   
  18.             cout<<" "<<i;
  19.         }
  20.       }
  21.       cout<<endl;
  22.       
  23.       system("pause");
  24.   }
  25.   return 0;   
  26. }
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表