Need a code to print this in command Window

A
B C
D E F
G H I J
K L M N O
& also
D
E F
G H I
J K L M
N O P Q R

1 件のコメント

Jan
Jan 2019 年 4 月 30 日
What exactly is the problem you want to solve. Do you have a starting character and should print 15 following characters in a triangle form to the command window? Or does a hardcoded solution starting at A and D solve the problem already? This looks like a homework, so post, what you have tried so far and ask a specific question.

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

回答 (2 件)

Jan
Jan 2019 年 4 月 29 日
編集済み: Jan 2019 年 4 月 29 日

0 投票

fprintf('A\n', ...
'B C\n', ...
'D E F\n', ...
'G H I J\n', ...
'K L M N O\n', ...
'& also\n', ...
'D\n', ...
'E F\n', ...
'G H I\n', ...
'J K L M\n', ...
'N O P Q R']);
If you want something more general, please mention the details.
This sound like a homework. If this is true, post what you have tried so far and ask a specific question.
Star Strider
Star Strider 2019 年 4 月 29 日

0 投票

Keep track of the span of indices you want to print, and the current start index.
Those are given as:
s = 0;
c = 1;
for k = 1:5
s = s + 1; % Current Index Span
c = c + s; % Current Start Index
end
I leave the rest to you.
Note that you need to first define the string of characters as:
a = 'A':'Z';

カテゴリ

製品

タグ

タグが未入力です。

質問済み:

2019 年 4 月 29 日

コメント済み:

Jan
2019 年 4 月 30 日

Community Treasure Hunt

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

Start Hunting!

Translated by