2017년 3월 31일 금요일

이한출판사 자바프로그래밍(java programming) 9장,10장(9chapter,10chapter) 워크북(workbook)

이한출판사 자바프로그래밍(java programming) 9장,10장(9chapter,10chapter) 워크북(workbook)
w09,w10_200311436_차석환.zip


목차
chapter 09 실습 과제1.
구현
실험 평가

chapter 09 실습 과제3.
분석
구현
실험 평가

본문
import java.awt.*;

class Exam0901 extends Frame
public Exam0901()
super( 화면 중앙에 배치 );
this.setSize(300, 200);

Dimension screen = Toolkit.getDefaultToolkit().getScreenSize();
Dimension frm = this.getSize();
int xpos = (int)(screen.getWidth() - frm.getWidth()) / 2;
int ypos = (int)(screen.getHeight() - frm.getHeight()) / 2;
this.setLocation (xpos, ypos);

Button butt = new Button( 프레임의 중앙 );
Panel topPane = new Panel();
Panel middlePane = new Panel();
Panel bottomPane = new Panel();

middlePane.setSize(0,0);
middlePane.add(butt);

this.setLayout(new GridBagLayout());
this.add(topPane);
this.add(middlePane);
this.add(bottomPane);


public static void main(String ar)
Exam0901 cp = new Exam0901();
cp.setVisible(true);



하고 싶은 말
이한출판사 자바프로그래밍(java programming) 9장 실습과제 1,3 하고
10장 실습과제 1,2입니다.

키워드
9장, 10장, 워크북, 자바, 자바프로그래밍

댓글 없음:

댓글 쓰기