💻 Hacer un algoritmo dónde se ingrese un número del 1 al 12 y muestre a que mes del año correspondiente:
Enero, Febrero, Marzo, Abril, Mayo, Junio, Julio, Agosto, Setiembre, Octubre, Noviembre, Diciembre.
* PSeInt :
Algoritmo full_codigos
Definir mes como Entero;
Escribir "MUESTRA LOS MESES DEL AÑO";
Escribir "";
Escribir Sin Saltar "INGRESE UN NÚMERO DEL MES [1 AL 12] : ";
Leer mes;
Segun (mes) hacer
1 : Escribir "MES DE ENERO";
2 : Escribir "MES DE FEBRERO";
3 : Escribir "MES DE MARZO";
4 : Escribir "MES DE ABRIL";
5 : Escribir "MES DE MAYO";
6 : Escribir "MES DE JUNIO";
7 : Escribir "MES DE JULIO";
8 : Escribir "MES DE AGOSTO";
9 : Escribir "MES DE SETIEMBRE";
10: Escribir "MES DE OCTUBRE";
11: Escribir "MES DE NOVIEMBRE";
12: Escribir "MES DE DICIEMBRE";
De Otro Modo: Escribir "ERROR NÚMERO INCORRECTO";
FinSegun
FinAlgoritmo
* Python :
print("MUESTRA LOS MESES DEL AÑO")
mes = int(input("INGRESE UN NÚMERO DEL MES [1 AL 12] : "))
if mes == 1:
print("MES DE ENERO")
elif mes == 2:
print("MES DE FEBRERO")
elif mes == 3:
print("MES DE MARZO")
elif mes == 4:
print("MES DE ABRIL")
elif mes == 5:
print("MES DE MAYO")
elif mes == 6:
print("MES DE JUNIO")
elif mes == 7:
print("MES DE JULIO")
elif mes == 8:
print("MES DE AGOSTO")
elif mes == 9:
print("MES DE SETIEMBRE")
elif mes == 10:
print("MES DE OCTUBRE")
elif mes == 11:
print("MES DE NOVIEMBRE")
elif mes == 12:
print("MES DE DICIEMBRE")
else:
print("ERROR NÚMERO INCORRECTO")
* Lenguaje C :
#include<stdio.h>
int main(){
int num;
printf("MUESTRA EL MES DEL ANIO.\n\n");
printf("INGRESE UN NUMERO DEL MES [1 AL 12] : ");
scanf("%i",&num);
switch(num){
case 1: printf("ENERO\n"); break;
case 2: printf("FEBRERO\n"); break;
case 3: printf("MARZO\n"); break;
case 4: printf("ABRIL\n"); break;
case 5: printf("MAYO\n"); break;
case 6: printf("JUNIO\n"); break;
case 7: printf("JULIO\n"); break;
case 8: printf("AGOSTO\n"); break;
case 9: printf("SETIEMBRE\n"); break;
case 10: printf("OCTUBRE\n"); break;
case 11: printf("NOVIEMBRE\n"); break;
case 12: printf("DICIEMBRE\n"); break;
default: printf("NUMERO DEL MES INCORRECTO\n");
}
return 0;
}
* C++ :
#include<iostream>
using namespace std;
int main() {
int mes;
cout << "MUESTRA EL MES DEL ANIO." << endl;
cout << "INGRESE UN NUMERO DEL MES [1 AL 12] : ";
cin >> mes;
switch(mes){
case 1 : cout << "MES DE ENERO" << endl; break;
case 2 : cout << "MES DE FEBRERO" << endl; break;
case 3 : cout << "MES DE MARZO" << endl; break;
case 4 : cout << "MES DE ABRIL" << endl; break;
case 5 : cout << "MES DE MAYO" << endl; break;
case 6 : cout << "MES DE JUNIO" << endl; break;
case 7 : cout << "MES DE JULIO" << endl; break;
case 8 : cout << "MES DE AGOSTO" << endl; break;
case 9 : cout << "MES DE SETIEMBRE" << endl; break;
case 10: cout << "MES DE OCTUBRE" << endl; break;
case 11: cout << "MES DE NOVIEMBRE" << endl; break;
case 12: cout << "MES DE DICIEMBRE" << endl; break;
default : cout << "ERROR NUMERO INCORRECTO" << endl;
}
return 0;
}
* C# :
using System;
using System.Collections.Generic;
using System.Text;
namespace full_codigos
{
class muestra_mes
{
static void Main(string[] args)
{
Console.ReadLine();
}
}
}
* Java Apache | NetBeans :
package full_codigos;
import java.util.Scanner;
public class muestra_mes {
public static void main(String[] args) {
int mes ;
Scanner ingreso=new Scanner(System.in);
System.out.print("INGRESE UN NÚMERO DEL MES [1 AL 12] : ");
mes = Integer.parseInt(ingreso.next());
switch(mes){
case 1 : System.out.println("MES DE ENERO"); break;
case 2 : System.out.println("MES DE FEBRERO"); break;
case 3 : System.out.println("MES DE MARZO"); break;
case 4 : System.out.println("MES DE ABRIL"); break;
case 5 : System.out.println("MES DE MAYO"); break;
case 6 : System.out.println("MES DE JUNIO"); break;
case 7 : System.out.println("MES DE JULIO"); break;
case 8 : System.out.println("MES DE AGOSTO"); break;
case 9 : System.out.println("MES DE SETIEMBRE"); break;
case 10: System.out.println("MES DE OCTUBRE"); break;
case 11: System.out.println("MES DE NOVIEMBRE"); break;
case 12: System.out.println("MES DE DICIEMBRE"); break;
default : System.out.println("ERROR NÚMERO INCORRECTO");
}
}
}