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.
00:9 ではなく 00:10 から 00:09 に変わるカウントダウンを表示する必要があります。面倒な if ステートメントに頼らずに、特定の数値が 2 桁で表示されるようにするにはどうすればよいですか?
これは、ifステートメントなしで完全に実行できます。文字列の書式設定だけです...
if
local secondTime = 0 local minuteTime = 10 print(string.format("%02d:%02d",minuteTime,secondTime))