1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 
public class Exam_03 {
    public static void main(String[] ar){
        int a = 100;
        char b = 'A';
        float c = 3.1415f;
        String d = "JAVA";
        
        System.out.printf("a = %d\n", a);
        System.out.printf("b = %c == %d\n", b, (int)b);
        System.out.printf("c = %f\n", c); // 소숫점이하 6자리까지 출력된다.
        System.out.printf("c = %.2f\n", c);
        System.out.printf("name = %s\n", d);
    }
}
 
cs


+ Recent posts