Jump to content

Veriyi Dakika/saate Çevirme


NotToday
 Share

Recommended Posts

tabii ki biraz matematik ile;

saniye = Math.Round((1395993544/1000))
dakika = Math.Round((1395993544/1000)/60)
saat = Math.Round(((1395993544/1000)/60)/60)
gun = Math.Round((((1395993544/1000)/60)/60)/24)
Dialog.Message("", "Geçen Süre: " .. gun .. " gün veya " .. saat .. " saat veya " .. dakika .. " dakika veya " .. saniye .. " saniye")
Link to comment
Share on other sites

Genelde bu fonksiyon kullanılır ;

function SecondsToClock(sSeconds)
	local nSeconds = String.ToNumber(sSeconds)
	if nSeconds == 0 then
		--return nil;
		return "00:00:00";
	else
		local nHours = string.format("%02.f", Math.Floor(nSeconds/3600));
		local nMins = string.format("%02.f", Math.Floor(nSeconds/60 - (nHours*60)));
		local nSecs = string.format("%02.f", Math.Floor(nSeconds - nHours*3600 - nMins *60));
		return nHours..":"..nMins..":"..nSecs
	end
end
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

  • Recently Browsing   0 members

    No registered users viewing this page.

×
×
  • Create New...