Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- HTML모드
- 카카오코딩테스트
- java
- 템플릿엔진
- 깃허브
- springDataJPA
- JPA Auditing
- 인스턴스
- 상속
- 멀티쓰레드
- 클래스
- Oracle
- Spring
- 메소드
- JavaScript
- 바인드변수
- mavenCentral
- 백준
- 컬렉션프레임워크
- SwingCalendar
- 클라이언트
- 생성자
- 서버
- socket
- 코딩
- jcenter
- Swing
- springboot
- 사용자관리프로그램
- 자바
Archives
- Today
- Total
프리 정보 컨텐츠
자바 별 찍기 예제 본문
for 문을 활용한 자바 별 찍기 예제 문제
public class Test
{
public static void main(String[] args) {
for(int i=1; i<=5; i++) {
for(int j=1; j<=i; j++) {
System.out.print("*");
}
System.out.println();
}
}
}
↓↓↓↓ 출력결과
*
**
***
****
*****
public class Test
{
public static void main(String[] args) {
for(int i=1; i<=5; i++) {
for(int k=5-i; k>0; k--) {
System.out.print(" ");
}
for(int j=1; j<=i; j++) {
System.out.print("*");
}
System.out.println();
}
}
}
↓↓↓↓ 출력결과
*
**
***
****
*****
public class Test
{
public static void main(String[] args) {
for(int i=1; i<=5; i++) {
for(int k=5-i; k>0; k--) {
System.out.print(" ");
}
for(int j=1; j<=i*2-1; j++) {
System.out.print("*");
}
System.out.println();
}
}
}
↓↓↓↓ 출력결과
*
***
*****
*******
*********
Comments