Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ここに私は
int x=3; NSLog(@"%i", x);
「01」のように表示するにはどうすればよいですか?x = 12の場合、「12」のように表示されますか?ありがとう
どう"%02d"ですか?
"%02d"
または"%02i"?
"%02i"
(フォーマット情報またはcocoadev NSLOGについては man printf を参照してください)