Retourner au contenu associé (journal : Le premier journal du vendredi de l'année (Le Zune plante))
Posté par Sylvain Blandel le 02 janvier 2009 à 14:28. En réponse au journal Le premier journal du vendredi de l'année (Le Zune plante). Évalué à 5.
year = ORIGINYEAR; /* = 1980 */ while (days > 365) { if (IsLeapYear(year)) { if (days > 366) { days -= 366; year += 1; } } else { days -= 365; year += 1; } }
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
# Le code en cause
Posté par Sylvain Blandel . En réponse au journal Le premier journal du vendredi de l'année (Le Zune plante). Évalué à 5.
year = ORIGINYEAR; /* = 1980 */
while (days > 365)
{
if (IsLeapYear(year))
{
if (days > 366)
{
days -= 366;
year += 1;
}
}
else
{
days -= 365;
year += 1;
}
}
Source : http://blog.makezine.com/archive/2008/12/cause_of_zune_leapy(...)
(Trouvé dans un commentaire de l'article sur PCINpact)