메뉴 건너뛰기

Free Board

조회 수 9 추천 수 0 댓글 1
?

단축키

Prev이전 문서

Next다음 문서

위로 아래로 댓글로 가기 인쇄 첨부 쓰기 목록
?

단축키

Prev이전 문서

Next다음 문서

위로 아래로 댓글로 가기 인쇄 첨부 쓰기 목록
?
  • JaeSoo 2007.10.08 16:31

    GuGuLab.java

    class GuGuLab extends GuGu {


     public static void main(String[] args){
     GuGuDan gu;  
      if (args.length==1) {
       int dan=Integer.parseInt(args[0]);
       gu= new GuGu(dan);
       gu.printPart();
      } else if (args.length==2)
      {
        int dan=Integer.parseInt(args[0]);
        int num=Integer.parseInt(args[1]);
        gu= new GuGu(dan, num);
        gu.printPart();
      } else
       { 
        gu= new GuGu();
        gu.printAll();
       }


     }
    }



    GuGu.java

    class GuGu extends Multiplication {
     
     GuGu(){}
     
     GuGu(int dan){
     super(dan);
     }
     
     GuGu(int dan, int number){
     super(dan,number);
     }
     
     void printPart() {
      if (number == 0) {      
       System.out.println(dan+"단 : ");
       for(int n=1; n <= 9; n++){
        System.out.print(dan+ "X" +n+ "=" + (dan*n)+"t");
        System.out.println();  
      }
     }
     
     else  {
       System.out.println(dan + "X" +number+ "=" +(dan*number));
      }
     }


     
      void printAll(){
       for(int i=1; i<=9; i++){
        for(int j=1; j<=9; j++){
         System.out.println(i + "X" +j+ "=" +(i*j));
       }
       System.out.println();
      } 
     }
    }


    틀린 부분을 한번 잘 찾아보세요 ^^;


  1. [공지] 자유 게시판 입니다.

  2. No Image 21Dec
    by 64도언
    2007/12/21 by 64도언
    Views 7 

    교수님,질문이요~^ㅡ^

  3. No Image 21Dec
    by JaeSoo
    2007/12/21 by JaeSoo
    Views 19092 

    [re] 출석 만점자들은 성적 조정하겠습니다.

  4. No Image 19Dec
    by 아아아아잉
    2007/12/19 by 아아아아잉
    Views 1 

    교수님

  5. 교수님

  6. No Image 12Dec
    by doll
    2007/12/12 by doll
    Views 4 

    교수님,, 기말프로젝트 관련해서,,

  7. No Image 16Dec
    by JaeSoo
    2007/12/16 by JaeSoo
    Views 0 

    [re] 교수님,, 기말프로젝트 관련해서,,

  8. No Image 11Dec
    by MIN
    2007/12/11 by MIN
    Views 3 

    교수님 질문이요.

  9. No Image 16Dec
    by JaeSoo
    2007/12/16 by JaeSoo
    Views 18428 

    [re] 교수님 질문이요.

  10. 교수님,,

  11. 아래내용해결됐는데

  12. 완전 급해요 ㅜ

  13. 교수님..

  14. 처방전

  15. No Image 07Dec
    by 쑴
    2007/12/07 by
    Views 4 

    교수님~! 궁금사항

  16. No Image 08Dec
    by JaeSoo
    2007/12/08 by JaeSoo
    Views 17538 

    [re] 교수님~! 궁금사항

  17. No Image 07Dec
    by ★ 초코ㅅΙ럽
    2007/12/07 by ★ 초코ㅅΙ럽
    Views 3 

    교수님 ...

  18. No Image 08Dec
    by JaeSoo
    2007/12/08 by JaeSoo
    Views 18266 

    [re] 교수님 ...

  19. No Image 05Dec
    by 1111
    2007/12/05 by 1111
    Views 2 

    교수님..

  20. No Image 08Dec
    by JaeSoo
    2007/12/08 by JaeSoo
    Views 17425 

    [re] 교수님..

Board Pagination Prev 1 2 3 4 5 ... 6 Next
/ 6
위로