import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
/*
ex) 3입력시
* 1
*** 2
***** 3
*** 2
* 1
*/
public class TestClass {
public static void main(String[] args) throws IOException {
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
int i, j, k;
System.out.print("입력 :");
i = Integer.parseInt(in.readLine());
System.out.println("i = " + i);
// 위부분 출력
for(k = 1; k <= i ; k++ )
{
for(j = 0; j < i - k; j++)
{
System.out.print(" ");
}
for(j = 0; j < 2*k-1; j++)
{
System.out.print("*");
}
System.out.print("\n");
}
// 아래부분 출력
for(k = 1; k <= i ; k++ )
{
for(j = 0; j < i - k; j++)
{
System.out.print(" ");
}
for(j = 0; j < 2*k-1; j++)
{
System.out.print("*");
}
System.out.print("\n");
}
/*
for (j = 0; j < i; j++) {
System.out.print("*");
}
System.out.print("\n");
for (j = 0; j < i; j++) {
System.out.print("*");
System.out.print("\n");
}
*/
}
}
'실습과제 모음' 카테고리의 다른 글
JCheckBoxTest (0) | 2012.07.18 |
---|---|
java 실습 0717 (0) | 2012.07.17 |
JAVA ComboBoxTest (0) | 2012.07.14 |
CPP 실습문제 0714 (0) | 2012.07.14 |
C 언어 실습문제 (0) | 2012.07.11 |