자료형(문자)

PHOTO EMBED

Sat Dec 10 2022 07:24:41 GMT+0000 (Coordinated Universal Time)

Saved by @jiyeong_lee #java

public class Main {
    public static void main(String[] args) {
        // write your code here
        char c = 'A';
        System.out.println(c);

        boolean fact = true;
        fact = false;
        System.out.println(fact);

        byte data = 'd';
        System.out.println(data);
    }
}
content_copyCOPY