C#/Problems

4. 숫자 앞에 0 과 공백 채우기

dev_sr 2020. 4. 8. 21:35

 

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
            //숫자 앞에 0 채우기
 
            Console.WriteLine("한개 채우기");
 
            for(int i=0; i<5; i++)
            {
                Console.WriteLine("{0:D2}", i+1);
            }
 
            Console.WriteLine("\n두개 채우기");
 
 
            for (int i = 0; i < 5; i++)
            {
                Console.WriteLine("{0:D3}", i + 1);
            }
 
 
            //숫자 앞에 공백넣기
 
            Console.WriteLine("\n공백 한개 넣기");
 
            for (int j=0; j< 5; j++)
            {
                Console.WriteLine("{0,2}", j+1);
            }
 
            Console.WriteLine("\n공백 두개 넣기");
 
            for (int j = 0; j < 5; j++)
            {
                Console.WriteLine("{0,3}", j + 1);
           }