당구프로그램 예제 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51package univ.inu.embedded; import java.awt.*; public class Ball { private int x = 100; private int y = 100; private int size = 30; private int xSpeed = 5; private int ySpeed = 5; private Color myColor = Color.YELLOW; public Ball() { } public Ball(int _x, .. 더보기 이전 1 ··· 4 5 6 7 8 9 10 ··· 13 다음