#25653: 很簡單的 AC


s910251@student.cysh.cy.edu.tw (吳亮佑)

學校 : 國立嘉義高級中學
編號 : 145844
來源 : [36.232.48.179]
最後登入時間 :
2022-12-25 20:25:19
d010. 盈數、虧數和完全數 -- Sagit's C++ 程式設計 | From: [36.232.97.106] | 發表日期 : 2021-06-09 15:06

#include <iostream>
using namespace std;
int main(){
  int n,j,sum;
  while (cin>>n){
    sum=0;
    j=1 ;
    for(j=1;j<n;j++){                    
      if ((n%j) == 0) {
        sum= sum+ j    ;
      }
        ;   
    }       
    if ( sum>n ){
      cout << "盈數" << endl;    
    } else if (  sum<n  ) {
      cout << "虧數" << endl;       
    } else {
      cout << "完全數" << endl;     
    }  
  }
}

加油
 
ZeroJudge Forum