본문 바로가기

파워java28

[파워자바] 6장 중간점검문제 Exercise Lab Exercise 솔루션 답지 중간점검문제 p.109 1. if( n >= 100 ) System.out.println("large"); else System.out.println("small"); 2. k의 값이 0인 경우-> A k의 값이 3인 경우-> C k의 값이 6인 경우-> B 3. if( n < 100 ) System.out.println("small"); else if( n < 200 ) System.out.println("medium"); else System.out.println("large"); p.112 1. 다음 case절이 실행된다. 2. fruit 값이 1이면 “사과” 출력 fruit 값이 2이면 “배”, “바나나” 출력 fruit 값이 5이면 “과일” 출력 p.119 1. 10741 2. 10741 p.1.. 2023. 2. 18.
[파워자바] 5장 중간점검문제 Exercise Lab Exercise 솔루션 답지 중간점검문제 p.79 기존의 값을 사라진다. 즉 새로운 값으로 대치된다. 아니다. 동일한 변수가 아니다. 9items, #ofPlayer p.85 1. unsigned short 또는 short 2. short 3. 1.23e-8 4. 28.9, 28.9는 double 형의 상수이다. 5. true, false p.91 1. int x = 1; int y = 1; int a = ++x * 2; // a의 값은 4 int b = y++ * 2; // b의 값은 2 2. 12/5 – 3 // -1 5 + 19%3 // 6 p.93 1. (1) x = y = 3 / 5 * 2 % 6; 5 4 1 2 3 (2) y = a * x * x + b * x + c; 6 1 2 4 3 5 p.94 1. x=ff0f y .. 2023. 2. 18.
[파워자바] 27장 프로그래밍 솔루션 답지 1. (1) import java.sql.*; import java.util.*; public class SQLSelectTest { public static Connection makeConnection(){ String url = "jdbc:oracle:thin:@127.0.0.1:1521:XE"; String id = "cinema"; String password = "pl518"; Connection con = null; try{ Class.forName("oracle.jdbc.driver.OracleDriver"); System.out.println("드라이버 적재 성공"); con = DriverManager.getConnection(url, id , password); System.out.p.. 2023. 2. 16.
[파워자바] 26장 프로그래밍 솔루션 답지 1. import java.awt.event.*; import java.applet.Applet; import java.awt.*; import javax.swing.*; public class Average extends JApplet implements ActionListener{ private JPanel panel1, panel2, panel3; private JTextField field1, field2, field3; private JLabel label1, label2, label3; private JLabel label4, label5, label6, label7, label8, label9; private JButton button; private float num1, num2, num3.. 2023. 2. 16.