마름모를 만들려고하는데 도와주세요
ChocoHoilc
import java.io.*;
class hap2{
public static void main(String args[])throws IOException{
String input=;for(;;){
System.out.print(입력하세요 : );
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
input = in.readLine();
System.out.println(input);
int iLen = Integer.parseInt(input);
if (iLen==0)
break;
//------------------------------------------------------아랫부분은 어떻게 만들긴 했는데 윗부분을 모르겠습니다. 도와주세요~
//------------------------------------------------------
for (int a = 0; a iLen; a++) {
// ****
// ***
// **
// *
for (int b = 0; b iLen; b++) {
if (b a) System.out.print(*);
else System.out.print( );
}
// ****
// ***
// **
// *
for (int b = iLen; b 0; b--) {
if (b a ) System.out.print(*);
else System.out.print( );
}
System.out.println();
}
}
}
}}}
-
가림새
Java 문제은행 옆에도 있답니다^^ 검색의 생활화~!!
-
찬늘봄
윗부분은 아랫부분과 반대로 \*\ 출력되는 곳에 공백을 처리하시면될꺼같은데요..