Esta função pega os nomes dos meses:
GetMonthName(iMonth)
{
static sStr[32];
sStr =
(
(iMonth == 0x1) ? ("Janeiro") : (iMonth == 0x2) ? ("Fevereiroo") : (iMonth == 0x3) ? ("Março") : (iMonth == 0x4) ? ("Abril") : (iMonth == 0x5) ? ("Maio") : (iMonth == 0x6) ? ("Junho") : (iMonth == 0x7) ?
("Julho") : (iMonth == 0x8) ? ("Agosto") : (iMonth == 0x9) ? ("Setembro") : (iMonth == 0xA) ? ("Outubro") : (iMonth == 0xb) ? ("Novembro") : (iMonth == 0xc) ? ("Dezembro") : ("Inválido")
);
return sStr;
}
printf("Mês 1: %s",GetMonthName(1));
printf("Mês 2: %s",GetMonthName(2));
printf("Mês 3: %s",GetMonthName(3));
printf("Mês 4: %s",GetMonthName(4));
printf("Mês 5: %s",GetMonthName(5));
printf("Mês 6: %s",GetMonthName(6));
printf("Mês 7: %s",GetMonthName(7));
printf("Mês 8: %s",GetMonthName(8));
printf("Mês 9: %s",GetMonthName(9));
printf("Mês 10: %s",GetMonthName(10));
printf("Mês 11: %s",GetMonthName(11));
printf("Mês 12: %s",GetMonthName(12));
printf("Mês 94198: %s",GetMonthName(94198));
Nenhum comentário:
Postar um comentário