Skip to content

Commit 1cf2c3c

Browse files
committed
240603 정보처리기사 실기 - Java (2022-1회 11번)
1 parent 67296ad commit 1cf2c3c

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

Diff for: EIP/Java/README.md

+20
Original file line numberDiff line numberDiff line change
@@ -436,6 +436,26 @@
436436

437437
- [] 2000
438438

439+
- 문제11. 다음 Java 코드에서 밑줄에 들어갈 알맞은 코드를 작성하시오.
440+
441+
```java
442+
class Car implements Runnable {
443+
int a;
444+
public void run() {
445+
system.out.println("message")
446+
}
447+
}
448+
449+
public class Main {
450+
public static void main(String args[]) {
451+
Thread t1 = new Thread(new _____());
452+
t1.start();
453+
}
454+
}
455+
```
456+
457+
- [] Car
458+
439459

440460

441461
#### 2022년 3회

0 commit comments

Comments
 (0)