자바 while, for 순환문 예제
글. 오상문 sualchi@daum.net
public class Main {
public static void main(String[] args) {
for(int i=5; i>0; i--) {
for(int j=i; j>0; j--)
System.out.print('*');
System.out.println();
}
int total = 0, i = 1;
while(i<=100) {
total += i;
i++;
}
System.out.println("1~100 합은 " + total + "입니다.");
// 원 그리기 x^2 + y^2 = r*r, 원 내부에 별 출력
for(int x=-15; x<=15; x++) {
for(int y=-15; y<=15; y++) {
if(x*x + y*y <= 15*15)
System.out.print("*");
else
System.out.print(" ");
}
System.out.println();
}
}
}
[실행 결과]
*****
****
***
**
*
1~100 합은 5050입니다.
*
***********
***************
*******************
*********************
***********************
*************************
*************************
***************************
***************************
*****************************
*****************************
*****************************
*****************************
*****************************
*******************************
*****************************
*****************************
*****************************
*****************************
*****************************
***************************
***************************
*************************
*************************
***********************
*********************
*******************
***************
***********
*
'JAVA' 카테고리의 다른 글
자바 1차원, 2차원 배열 예제 (0) | 2020.11.19 |
---|---|
자바 기본 자료형 예제 (0) | 2020.11.19 |
자바 기본형 변수 선언과 사용 예제 (0) | 2020.11.19 |
자바 Hello world 출력 예제 3개 (0) | 2020.11.19 |
자바, 10진수, 날짜, 선택, 문자열 형식화 예제 (0) | 2019.02.04 |