multiplication table using for loops

hi , i need a script using for loop and nested one i guess to show this multiplication table, in this order particulary
1
2 4
3 6 9
4 8 12 16
5 10 15 20 25

2 件のコメント

James Tursa
James Tursa 2021 年 3 月 14 日
What have you done so far? What specific problems are you having with your code?
El-Hassani Ali
El-Hassani Ali 2021 年 3 月 14 日
x=input('enter number of rows in table: ');
for i=1:x
fprintf('%d\n',i)
end
i've done this so far and idk how to update my variables

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

回答 (1 件)

Matt J
Matt J 2021 年 3 月 14 日

0 投票

for i=1:5
i*(1:i)
end
ans = 1
ans = 1×2
2 4
ans = 1×3
3 6 9
ans = 1×4
4 8 12 16
ans = 1×5
5 10 15 20 25

カテゴリ

ヘルプ センター および File ExchangeLoops and Conditional Statements についてさらに検索

質問済み:

2021 年 3 月 14 日

回答済み:

2021 年 3 月 14 日

Community Treasure Hunt

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

Start Hunting!

Translated by