반응형





System.out.print

System.out.println

System.out.printf

에 관하여 Java에서 간단한 사용법 및 C/C++에서도 익숙하지못한 Nd%에 관하여 설명하였다.

(N : 자연수)



주석을 통해 설명을 해 두었다.


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package JavaBasic;
 
public class Jmain{
    
    public static void main(String []args)
    {
        /* 스트링 출력 */
        
        // 화면 출력 후 한줄 내림
        System.out.println("hello world");
        
        // 화면 출력 후 한줄 내리지 않는다.
        System.out.print("hello ? ");
        
        // C/C++에서 이용하듯이 printf를 이용한다.(서식 이용)
        String str = "world !";
        System.out.printf("%s\n bye.. \n", str);
        
        // (10-문자열 개수)칸 띄우고 출력
        System.out.printf("%10s\n", str);
 
        /* 정수 출력 */
        
        // 정수 출력
        System.out.printf("%d\n"100+100);
 
        // (5-숫자 자릿수)칸 띄우고 출력
        System.out.printf("%5d\n"123);
        
        // (5-숫자 자릿수)칸 띄우고 출력 
        //** 이때 6자릿수이기에 5-6 = -1 즉, 0 이하일때는 띄우지 않고 출력
        System.out.printf("%5d\n"123456);
 
        // 0(5-숫자 자릿수)만큼 넣고 출력
        System.out.printf("%05d\n"123);
 
        
        /* 실수 출력 */
 
        // 실수형 출력
        System.out.printf("%f\n"123.45);
 
        // (7-숫자 개수)칸 띄우고 출력
        System.out.printf("%7.1f\n"123.45);
        
        // (7-숫자 개수)칸 띄우고 소수 3자리까지 출력
        System.out.printf("%7.3f\n"123.45);
        
    }
}
 
//                                                       This source code Copyright belongs to Crocus
//                                                        If you want to see more? click here >>
Crocus



반응형