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 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
|
Format item: c
ABC with %c : A
123 with %c : {
ABC with %.15c : A
123 with %.15c : {
ABC with %15c : A
123 with %15c : {
ABC with %-15c : A
123 with %-15c : {
Format item: d
ABC with %d : 0
123 with %d : 123
ABC with %.15d : 000000000000000
123 with %.15d : 000000000000123
ABC with %15d : 0
123 with %15d : 123
ABC with %-15d : 0
123 with %-15d : 123
Format item: e
ABC with %e : 0.000000e+00
123 with %e : 1.230000e+02
ABC with %.25e : 0.0000000000000000000000000e+00
123 with %.25e : 1.2300000000000000000000000e+02
ABC with %25e : 0.000000e+00
123 with %25e : 1.230000e+02
ABC with %-25e : 0.000000e+00
123 with %-25e : 1.230000e+02
Format item: f
ABC with %f : 0.000000
123 with %f : 123.000000
ABC with %.25f : 0.0000000000000000000000000
123 with %.25f : 123.0000000000000000000000000
ABC with %25f : 0.000000
123 with %25f : 123.000000
ABC with %-25f : 0.000000
123 with %-25f : 123.000000
Format item: g
ABC with %g : 0
123 with %g : 123
ABC with %.25g : 0
123 with %.25g : 123
ABC with %25g : 0
123 with %25g : 123
ABC with %-25g : 0
123 with %-25g : 123
Format item: o
ABC with %o : 0
123 with %o : 173
ABC with %.15o : 000000000000000
123 with %.15o : 000000000000173
ABC with %15o : 0
123 with %15o : 173
ABC with %-15o : 0
123 with %-15o : 173
Format item: s
ABC with %s : ABC
123 with %s : 123
ABC with %.15s : ABC
123 with %.15s : 123
ABC with %15s : ABC
123 with %15s : 123
ABC with %-15s : ABC
123 with %-15s : 123
Format item: u
ABC with %u : 0
123 with %u : 123
ABC with %.15u : 000000000000000
123 with %.15u : 000000000000123
ABC with %15u : 0
123 with %15u : 123
ABC with %-15u : 0
123 with %-15u : 123
Format item: x
ABC with %x : 0
123 with %x : 7b
ABC with %.15x : 000000000000000
123 with %.15x : 00000000000007b
ABC with %15x : 0
123 with %15x : 7b
ABC with %-15x : 0
123 with %-15x : 7b
Format item: X
ABC with %X : 0
123 with %X : 7B
ABC with %.15X : 000000000000000
123 with %.15X : 00000000000007B
ABC with %15X : 0
123 with %15X : 7B
ABC with %-15X : 0
123 with %-15X : 7B
|