Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- SPLIT
- VARIABLE
- 자바기초
- sql업데이트
- JavaScript
- javascript 한글입력체크
- array
- MSSQL보안
- wap
- jdbc driver
- join
- sql순위
- 정규식
- inner join
- ERD
- update
- WML
- FileSystemObject
- VarType
- instr
- XML
- 인젝션
- sql랭킹
- 이미지가로길이
- tempDB
- 이미지세로길이
- injection
- xmldom
- 한글입력체크
- asp함수
Archives
- Today
- Total
3초기억력
제어문 + 반복문 문제) if + for + array 본문
package ControlFlow;
public class exam_if_for {
public static void main(String[] args) {
// TODO Auto-generated method stub
String t1 = "*";
for(int i=1; i <= 5; i++) {
// System.out.println("i=" + i);
for(int count=1; count <= 5; count++) {
// System.out.println("count=" + count);
if (i >= count) {
System.out.print(t1);
}
}
System.out.println();
}
System.out.println("=================");
String t2 = "1";
int arr[] = {1, 3, 5, 8, 6, 3, 1};
for(int i : arr) {
for (int j=1; j <= (8 - (i / 4)); j++) {
System.out.print(" ");
}
for (int j=1; j <= i; j++) {
System.out.print(t2);
}
System.out.println();
}
System.out.println("=================");
String t3 = "*";
for(int i=1; i <= 5; i++) {
// System.out.println("i=" + i);
for(int count=1; count <= 5; count++) {
if (i >= count) {
System.out.print(t3);
}
}
for (int j = 1; j <= 10 - ( i * 2); j++) {
System.out.print(" ");
}
for(int count=1; count <= 5; count++) {
if (i >= count) {
System.out.print(t3);
}
}
System.out.println();
}
}
}
'자바_기초' 카테고리의 다른 글
반복문 문제) while + char (0) | 2019.05.14 |
---|---|
반복문) while (0) | 2019.05.14 |
제어문 문제) if + 논리연산자 (0) | 2019.05.14 |
제어문 문제)Scanner + if (0) | 2019.05.14 |
제어문 - 조건문 다중 if else (0) | 2019.05.14 |
Comments