Código C:
Ver original//AGOSTO
if (mes1
== 8) { printf ("\t\t ( ***** --- AGOSTO --- ***** )\n\n\n"); printf ("\tLUN\t MAR\t MIE\t JUE\t VIE\t SAB\t DOM\t\n\n"); printf ("\t -\t -\t -\t -\t 1\t 2\t 3\t\n\n"); printf ("\t 4\t 5\t 6\t 7\t 8\t 9\t 10\t\n\n"); printf ("\t 11\t 12\t 13\t 14\t 15\t 16\t 17\t\n\n"); printf ("\t 18\t 19\t 20\t 21\t 22\t 23\t 24\t\n\n"); printf ("\t 25\t 26\t 27\t 28\t 29\t 30\t 31\t\n\n\n\n"); }
//SEPTIEMBRE
if (mes1
== 9) { printf ("\t\t ( ***** --- SEPTIEMBRE --- ***** )\n\n\n"); printf ("\tLUN\t MAR\t MIE\t JUE\t VIE\t SAB\t DOM\t\n\n"); printf ("\t 1\t 2\t 3\t 4\t 5\t 6\t 7\t\n\n"); printf ("\t 8\t 9\t 10\t 11\t 12\t 13\t 14\t\n\n"); printf ("\t 15\t 16\t 17\t 18\t 19\t 20\t 21\t\n\n"); printf ("\t 22\t 23\t 24\t 25\t 26\t 27\t 28\t\n\n"); printf ("\t 29\t 30\t -\t -\t -\t -\t -\t\n\n\n\n"); }
//OCTUBRE
if (mes1
== 10) { printf ("\t\t ( ***** --- OCTUBRE --- ***** )\n\n\n"); printf ("\tLUN\t MAR\t MIE\t JUE\t VIE\t SAB\t DOM\t\n\n"); printf ("\t -\t -\t 1\t 2\t 3\t 4\t 5\t\n\n"); printf ("\t 6\t 7\t 8\t 9\t 10\t 11\t 12\t\n\n"); printf ("\t 13\t 14\t 15\t 16\t 17\t 18\t 19\t\n\n"); printf ("\t 20\t 21\t 22\t 23\t 24\t 25\t 26\t\n\n"); printf ("\t 27\t 28\t 29\t 30\t 31\t -\t -\t\n\n\n\n"); }
//NOVIEMBRE
if (mes1
== 11) { printf ("\t\t ( ***** --- NOVIEMBRE --- ***** )\n\n\n"); printf ("\tLUN\t MAR\t MIE\t JUE\t VIE\t SAB\t DOM\t\n\n"); printf ("\t -\t -\t -\t -\t -\t 1\t 2\t\n\n"); printf ("\t 3\t 4\t 5\t 6\t 7\t 8\t 9\t\n\n"); printf ("\t 10\t 11\t 12\t 13\t 14\t 15\t 16\t\n\n"); printf ("\t 17\t 18\t 19\t 20\t 21\t 22\t 23\t\n\n"); printf ("\t 24\t 25\t 26\t 27\t 28\t 29\t 30\t\n\n\n\n"); }
//DICIEMBRE
if (mes1
== 12) { printf ("\t\t ( ***** --- DICIEMBRE --- ***** )\n\n\n"); printf ("\tLUN\t MAR\t MIE\t JUE\t VIE\t SAB\t DOM\t\n\n"); printf ("\t 1\t 2\t 3\t 4\t 5\t 6\t 7\t\n\n"); printf ("\t 8\t 9\t 10\t 11\t 12\t 13\t 14\t\n\n"); printf ("\t 15\t 16\t 17\t 18\t 19\t 20\t 21\t\n\n"); printf ("\t 22\t 23\t 24\t 25\t 26\t 27\t 28\t\n\n"); printf ("\t 29\t 30\t 31\t -\t -\t -\t -\t\n\n\n\n"); }
break;
}
switch(programa){
case 11: //Nº de ejecuciones de printf
for (i1 = 0; i1 < 100; i1++)
if ((0 == a3 % 4) || (i1 % 2) == 0)
break;
}
switch(programa){
case 12: //Programa 12. Conversor de segundos a horas
printf ("Introduce la cantidad de segundos que quieres calcular: ", segundos
);
hora = segundos / 3600;
segundos = segundos % 3600;
minuto = segundos / 60;
segundos = segundos % 60;
printf ("____________________________\n\n\n"); if (hora
> 0) printf ("%d Horas ", hora
); if (minuto
> 0) printf ("%d Minutos ", minuto
); if (segundos
> 0) printf ("%d Segundos\n\n", segundos
); printf ("____________________________\n\n\n");
break;
}
switch(programa){
case 13: //Programa 13. Calculadora
printf("\t\t\t\t *** CALCULADORA ***"); printf(" 1. Suma\n 2. Resta\n 3. Multiplicacion\n 4. Division\n 5. Salir\n\n"); printf(" ______________________"); printf(" Elige la opcion que quieras calcular: "); printf(" ______________________");
switch(opcion){
case 1:
printf(" Introduzca numero 1: "); printf(" Introduzca numero 2: "); n3 = n1 + n2;
printf("\t %d + %d = %d \n\n\n\n\n", n1
,n2
,n3
); break;
}
switch(opcion){
case 2:
printf(" Introduzca numero 1: "); printf(" Introduzca numero 2: "); n3 = n1 - n2;
printf("\t %d - %d = %d \n\n\n\n\n", n1
,n2
,n3
); break;
}
switch(opcion){
case 3:
printf(" Introduzca numero 1: "); printf(" Introduzca numero 2: "); n3 = n1 * n2;
printf("\t %d * %d = %d \n\n\n\n\n", n1
,n2
,n3
); break;
}
switch(opcion){
case 4:
printf(" Introduzca numero 1: "); printf(" Introduzca numero 2: "); n3 = n1 / n2;
printf("\t %d / %d = %d \n\n\n\n\n", n1
,n2
,n3
); break;
}
}
return 0;
}