Ingresa un numero y muestra un dia de la semana

💻 Hacer un programa dónde se ingrese un número del 1 al 7 y muestre el día de la semana correspondiente, entendiendo que el número 1 pertenece al Lunes.

EJEMPLO :

1 = LUNES
2 = MARTES
3 = MIERCOLES
4 = JUEVES
5 = VIERNES
6 = SÁBADO
7 = DOMINGO



* PSeInt :
Algoritmo full_codigos
    Definir dia como Entero;
    Escribir "01. MUESTRA EL DÍA DE LA SEMANA";
    Escribir "";
    Escribir Sin Saltar "INGRESE UN DÍA DEL [1 al 7] : ";
    Leer dia;	
    Segun (dia) hacer
        1 : Escribir "LUNES";
        2 : Escribir "MARTES";
        3 : Escribir "MIÉRCOLES";
        4 : Escribir "JUEVES";
        5 : Escribir "VIERNES";
        6 : Escribir "SÁBADO";
        7 : Escribir "DOMINGO";
    FinSegun
FinAlgoritmo

* Python :
print("MOSTRAR UN DÍA DE LA SEMANA")
dia = int(input("INGRESE UN DIA DEL [1 al 7] : "))
if dia == 1:
    print("LUNES")
elif dia == 2:
    print("MARTES")
elif dia == 3:
    print("MIÉRCOLES")
elif dia == 4:
    print("JUEVES")
elif dia == 5:
    print("VIERNES")
elif dia == 6:
    print("SÁBADO")
elif dia == 7:
    print("DOMINGO") 

* Lenguaje C :
#include<stdio.h>
int main() {
    int dia;
    printf("01. MUESTRA EL DIA DE LA SEMANA.\n\n");
    printf("INGRESE UN DIA DEL [1 al 7] :");
    scanf("%d",&dia);
    switch(dia){
        case 1 : printf("LUNES"); break;
        case 2 : printf("MARTES"); break;
        case 3 : printf("MIERCOLES"); break;
        case 4 : printf("JUEVES"); break;
        case 5 : printf("VIERNES"); break;
        case 6 : printf("SABADO"); break;
        case 7 : printf("DOMINGO"); break;
    }	
    return 0;
}

* C++ :
#include<iostream>
using namespace std;
int main() {
    int dia;
    cout << "01. MUESTRA EL DIA DE LA SEMANA" << endl;
    cout << "INGRESE UN DIA DEL [1 al 7] : ";
    cin >> dia;
    switch(dia){
        case 1 : cout << "LUNES" << endl; break;
        case 2 : cout << "MARTES" << endl; break;
        case 3 : cout << "MIERCOLES" << endl; break;
        case 4 : cout << "JUEVES" << endl; break;
        case 5 : cout << "VIERNES" << endl; break;
        case 6 : cout << "SABADO" << endl; break;
        case 7 : cout << "DOMINGO" << endl; break;
    }
    return 0;
}

* C# :
using System;
using System.Collections.Generic;
using System.Text;
namespace full_codigos
{
    class llamada_telefono
    {
        static void Main(string[] args)
        {

            Console.ReadLine();
        }
    }
}

* Java Apache | NetBeans :
package full_codigos;
import java.util.Scanner;
public class dia_de_la_semana {
    public static void main(String[] args) {        
        int dia ;  
        Scanner ingreso=new Scanner(System.in);
        System.out.print("INGRESE UN DÍA DEL [1 al 7] : ");
        dia = Integer.parseInt(ingreso.next());        
        switch(dia){
            case 1 : System.out.println("LUNES"); break;
            case 2 : System.out.println("MARTES"); break;
            case 3 : System.out.println("MIÉRCOLES"); break;
            case 4 : System.out.println("JUEVES"); break;
            case 5 : System.out.println("VIERNES"); break;
            case 6 : System.out.println("SÁBADO"); break;
            case 7 : System.out.println("DOMINGO"); break;
        }	
    }   
}