wasup

java for문 *출력 본문

IT/Java

java for문 *출력

wasupup 2020. 11. 4. 10:08
반응형
int i, j;
for(i=0;i<4;i++){
	for(j=1;j<=i+1;j++){
		System.out.print("*");
	}
	System.out.println();
}

출력결과

*
**
***
****

반응형

'IT > Java' 카테고리의 다른 글

java for문 구구단 출력  (0) 2020.11.05
java for문 구구단 출력  (0) 2020.11.04
java for문 2  (0) 2020.11.03
java for문  (0) 2020.11.02
java ifElse와 Switch에 nextInt(), next() 사용  (0) 2020.11.01
Comments