This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.*; | |
import java.util.Scanner; | |
public class Slipp01{ | |
static int R, C, r, c; | |
static String G[], P[]; | |
public static void main(String args[]){ | |
Scanner in = new Scanner(System.in); | |
int test_case = in.nextInt(); | |
Boolean result = false; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package sunwooks; | |
import java.io.*; | |
import java.util.Scanner; | |
public class light { | |
public static void main(String [] args)throws IOException{ | |
int size; | |
int [][] area; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package sunwooks; | |
// 1)차이가뭔지 파일,IOException | |
// 설명 : IOException은 말 그대로 IO(Input,Output)과정에서 발생하는 예상못한 동작이 발생했을때 | |
// 이 프로그램이 그 에러를 처리하지 않고, 상위 프로그램에 전달한다는 뜻인데, 이거는 Java의 핵심 | |
// 예외 처리 기법이라 알면 좋고, 굳이 여기서 100% 이해할 필요는 없고. 아마 try-catch 배우면서 | |
// 더 자세히 배우게 될꺼야. | |
// 내가 알기로는 Scanner 클래스는 IOException이 안 일어나는걸로 알고 있는데... 필요한가 보네... | |
import java.io.File; |