Info
此问题已关闭。 请重新打开它进行编辑或回答。
can anyone help me in this ?
    2 次查看(过去 30 天)
  
       显示 更早的评论
    
i need the answer of this please 
1*****1
 1***1
  1*1
   1 
by using neasted for loops
1 个评论
  Walter Roberson
      
      
 2020-11-14
				hint: handle the final line after the outer loop.
The rest involve outputting a 1, then a certain number of asterisk, then a 1.
回答(1 个)
  Sai Veeramachaneni
    
 2020-11-18
        Use nested loops and conditional statements to achieve your pattern.
You can look at the below  pseudo code for your reference.
count_space=0;%Number of spaces to print
for i=1:rows %Loop over the number of rows
    printspaces(count_space times)
    for j=1:columns %Loop over the number of columns
        if j==1 or j== columns
            printOne 
        else
            printasterisk
        end
    end
    count_space=count_space+1;%After every loop increase your space count by 1.
    columns=columns-2;
    printNewLine
end
0 个评论
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


