반응형
항상 프로그래밍 공부하면서 느낀거지만, 난 좀 멍청한것 같다.public class Exam_01 {
public static void main(String[] ar){for(int t=1; t<6; t++){
for(int a=5; t<a; a--){
System.out.print(" ");
}
for(int b=0; b<t; b++){
System.out.print("*");
}
System.out.println();
}
}
}
/*결과물
*
**
***
****
*****
*/
'Programming' 카테고리의 다른 글
컴포넌트의 종류 (0) | 2009.08.28 |
---|---|
Flex Builder 3 (0) | 2009.08.28 |
FLEX + 네이버 API 연동 예제 (0) | 2009.08.09 |
PHP의 미래 (0) | 2009.08.09 |
PHP3 와 PHP5의 차이점 (0) | 2009.08.09 |