Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

Write a function getatriangle(R,f,b) that takes the number of rows R and returns a character matrix that has the shape of a triangle filled with the character 'f' on a background filled with the character 'b'.

조회 수: 1 (최근 30일)
Assume that R is a positive integer and that f and b are single characters. If b is not given, use '.' . If f is not given, use '#'.
Ex
>>getatriangle(4,'@','-')
ans =
---@---
--@@@--
-@@@@@-
@@@@@@@
>> getatriangle(5)
ans =
....#....
...###...
..#####..
.#######.
#########
  댓글 수: 2
Sean
Sean 2013년 5월 7일
how to write the function haha. so far i have:
function t = getatriangle(R,f,b)
if nargin == 1;
f = '#';
b = '.';
end

답변 (1개)

Iman Ansari
Iman Ansari 2013년 5월 9일
Hi.
R = 20;
f = '@';
b = '-';
max_num=2*R-1;
fprintf('\n');
for i=1:R
S1=repmat(b,[1 R-i]);
S2=repmat(f,[1 2*i-1]);
S=[S1 S2 S1];
fprintf('%s\n',S);
end

이 질문은 마감되었습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by