完全数(その数自身を除く約数の和がその数自身と等しい自然数)を見つけるコードなのですが、出力がすべて”0 is a perfect number”となってしまします。
漠然とした質問で失礼は承知ですが、どうしてこのような結果となるのか教えてほしいです
c
1 2 3#include <iostream> 4using namespace std; 5 6 7int func(int n){ 8 int i; 9 int sum = 0; 10 int j = 0; 11 int *num; 12 num = new int[100]; 13 for(i = 1; i < n; i++){ 14 if(n % i == 0){ 15 num[j] = i; 16 j++; 17 } 18 } 19 for(i = 0; i < j ; i++ ){ 20 sum += num[i]; 21 } 22 if(sum == n){ 23 return n; 24 } 25 else 26 { 27 return -1; 28 } 29} 30int main(){ 31 int *per; 32 int a,b,c = 0; 33 per = new int[100]; 34 for(a = 1; a < 101 ; a++){ 35 b = func(a); 36 if(b > 0) 37 per[c] = a; 38 c++; 39 } 40 for(a = 0; a < c ; a++){ 41 cout << per[a] << "is a perfect number"<< endl; 42 } 43 44 45 return 0; 46} 47 48 49 50 51
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/07/15 07:07