No Output for loop?

4 ビュー (過去 30 日間)
Steven Thies
Steven Thies 2021 年 2 月 18 日
コメント済み: Rena Berman 2021 年 5 月 6 日
% I want to create a loop for all number combination from 1 to 10^4 for a^3+b^3=c^3
% My Script does not work. There is no Output and no errror code.
% When i change i to 2 then it works but why not when i use 3 for i
% Please help me to fix my problem
% Thank you
n = 10^4;
i = 3;
for a = 1:n
for b = 1:n
for c = 1:n
if (((a^i)+(b^i)) == (c^i))
result = ['Bingo ' 'For a: ' num2str(a) ' For b: ' num2str(b) ' For c: ' num2str(c)];
disp(result)
end
end
end
end
  2 件のコメント
Stephen23
Stephen23 2021 年 2 月 19 日
編集済み: Stephen23 2021 年 2 月 19 日
Original question by Steven Thies retrieved from Google Cache:
Many deleted comments are also shown in the archive.
"No Output for loop?"
% I want to create a loop for all number combination from 1 to 10^4 for a^3+b^3=c^3
% My Script does not work. There is no Output and no errror code.
% When i change i to 2 then it works but why not when i use 3 for i
% Please help me to fix my problem
% Thank you
n = 10^4;
i = 3;
for a = 1:n
for b = 1:n
for c = 1:n
if (((a^i)+(b^i)) == (c^i))
result = ['Bingo ' 'For a: ' num2str(a) ' For b: ' num2str(b) ' For c: ' num2str(c)];
disp(result)
end
end
end
end
Rena Berman
Rena Berman 2021 年 5 月 6 日
(Answers Dev) Restored edit

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

採用された回答

Cris LaPierre
Cris LaPierre 2021 年 2 月 18 日
編集済み: Cris LaPierre 2021 年 2 月 18 日
You could could potentially display 1.000000000000000e+12 values. I would seriously reconsider doing that.
The reason nothing is displayed is because none of the values tested meet the condition of your if statement. In fact, the only integer solution to this equation is a=b=c=0 (proved by Fermat and perhaps Euler).
  12 件のコメント
Cris LaPierre
Cris LaPierre 2021 年 2 月 19 日
So @Cris LaPierre if i use n=10^4 instead n=2 is it right like that for my task?
n=10^4;
i=3;
for a = 0:n
for b = 0:n
for c = 0:n
if a^i+b^i == c^i
result = ['Bingo ' 'For a: ' num2str(a) ' For b: ' num2str(b) ' For c: ' num2str(c)]; disp(result)
end
end
end
end
Cris LaPierre
Cris LaPierre 2021 年 2 月 19 日
@Cris LaPierre now i think i understand my task. i already created my script which is right for the task. he does not want any solution only the script.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by