matlab loops break and continue commands

5 ビュー (過去 30 日間)
Alinetin
Alinetin 2020 年 4 月 9 日
コメント済み: Walter Roberson 2020 年 4 月 9 日
In number theory, a semi-perfect number is a positive integer number that is equal to the sum of its largest three positive divisors, excluding the number itself. For example; 18 is a semiperfect number, the positive divisors of this number are 1,2,3,6,9,18, and the sum of the three largest integer divisors (excluding the number itself) is 3 + 6 + 9 = 18. Write a MATLAB program that checks whether a given number is semi-perfect number.
  2 件のコメント
Ameer Hamza
Ameer Hamza 2020 年 4 月 9 日
This seems like a homework question. What have you already tried?
mehmet kiraccakali
mehmet kiraccakali 2020 年 4 月 9 日
編集済み: mehmet kiraccakali 2020 年 4 月 9 日
n=input('Enter a number ');
sum=0;
for i=n-1:-1:1
if mod(n,i)==0
sum=sum+i;
end
end
if sum==n
fprintf('%d is a semi-perfect number \n',n);
else
fprintf('%d is not a semi-perfect number \n',n);
end
I couldn't solve this question either, I tried to make the solution above. but i don't know how to find the three biggest divisors.

サインインしてコメントする。

回答 (1 件)

Peng Li
Peng Li 2020 年 4 月 9 日
You are almost there. Just need a seperate counter that force the loop to break if it accumulates to 3.
n = input('Enter a number ');
sum = 0;
ind = 0;
for i = n-1:-1:1
if mod(n, i) == 0
sum = sum + i;
ind = ind + 1;
if ind == 3
break;
end
end
end
if sum == n
fprintf('%d is a semi-perfect number \n',n);
else
fprintf('%d is not a semi-perfect number \n',n);
end
  7 件のコメント
Ayberk Dönmez
Ayberk Dönmez 2020 年 4 月 9 日
thank you so much
Walter Roberson
Walter Roberson 2020 年 4 月 9 日
sum of its largest three positive divisors
That is why 3 was chosen to compare against.
ind is being used to count how many factors have been found so far.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeNumerical Integration and Differentiation についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by