入门学者?请各位高手帮忙!!
打印输出图案:
*
**
***
****
------解决方案--------------------搜一下以前的贴子,有解决方法。
------解决方案--------------------for(int i = 1 ; i < 5 ; i++ ){
for(int j = 0 ; j < i ; j++){
System.out.print( "* ");
}
System.out.println();
}
------解决方案--------------------用一个for解决
public class Test {
public static void main(String args[]){
final int length=5;
int j=1;
for(int i=1;i <=length;i++){
System.out.print( "* ");
if(i==j){
i=0;
j++;
System.out.println();
}
}
System.out.print( "* ");
}
}
------解决方案--------------------*号也能打印 太强了