[Ajuda] GetDate com Ano Bissexto - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: Non-English (
https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (
https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (
https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] GetDate com Ano Bissexto (
/showthread.php?tid=479936)
GetDate com Ano Bissexto -
Lucas_Pawno - 07.12.2013
Isso indentifica um ano bissexto
Код:
#define isLeapYear(%0) ((!(%0 % 4) && (%0 % 100)) || !(%0 % 400))
Agora um GetDate com Ano Bissexto tipo, quero Getar um GetDate com Ano Bissexto saca ?
Re: GetDate com Ano Bissexto -
PT - 08.12.2013
pawn Код:
#define isLeapYear(%0) ((!(%0 % 4) && (%0 % 100)) || !(%0 % 400))
new Year;
getdate(Year);
if(isLeapYear(Year)) printf("ano %d Bissexto ", Year);
else printf("ano %d nao e Bissexto ", Year);
isso??
Re: GetDate com Ano Bissexto -
Lucas_Pawno - 08.12.2013
Sim isso mesmo, obrigado, no casso isso vai Getar um GetDate com Ano Bissexto ?
Entгo estб certo, eu tinha feito um pouco diferente sу uma duvida se ia funcionar ou nгo mesmo.
Re: GetDate com Ano Bissexto -
PT - 08.12.2013
dependendo da forma que for usar, aquilo vai identificar se o ano й ou nao bissexto, teste o code ae pra ver.