How to write this shape in java code??

2007-07-12 3:02 am
*
***
*****
*******
*********

i wan triangle shape no half
更新1:

I don wan half i wan whole triangle

回答 (2)

2007-07-12 3:11 am
✔ 最佳答案
參考以下範例,
.......
String strstar;
for(i=0;i<noofline;i++){
strstar = "";
for(j=0;j<2*i;j++){
strstar += "*";
}
System.out.println(strstar);
}
......
參考: me
2007-07-13 5:52 am



如下




圖片參考:http://i206.photobucket.com/albums/bb265/a048042l/triangle.gif




執行結果:




圖片參考:http://i206.photobucket.com/albums/bb265/a048042l/triangle01.gif





2007-07-12 23:29:32 補充:
迴圈部份這樣寫也行:for (int i = 0; i &lt; 5; i++){ for (int j = 0; j &lt; 4 - i; j++)  System.out.print( &quot; &quot; ); for (int j = 0; j &lt; (i * 2) + 1; j++)  System.out.print( &quot;*&quot; ); System.out.println();}

2007-07-12 23:54:44 補充:
留意 System.out.print( &quot;*&quot; ); 這行多了一個 semicolon,這個多餘的 semicolon 是此網站的 bug 造成的,原本是沒有的。
參考: 個人經驗


收錄日期: 2021-04-23 17:07:20
原文連結 [永久失效]:
https://hk.answers.yahoo.com/question/index?qid=20070711000051KK03788

檢視 Wayback Machine 備份