Here you get half a pyramid.
Code:class Builder { public static void main(String[] args){ StringBuffer sb = new StringBuffer(); for(int i = 0; i < 15; ++i){ sb.append(i); System.out.println(sb); } } }
|
Results 1 to 4 of 4
Thread: Help!Hybrid View
|
Click Here to Expand Forum to Full Width |