Algoritmo que muestra si es un numero par o impar

💻 Hacer un programa donde se ingrese un número entero por teclado y muestre si es par o impar.



* PSeInt :
Algoritmo full_codigos
    Definir num como Entero;
    Escribir Sin Saltar "Ingrese Número : ";
    Leer num;
    Si (num MOD 2) == 0 Entonces
        Escribir "NÚMERO PAR";
    SiNo
        Escribir "NÚMERO IMPAR";
    FinSi
FinAlgoritmo

* Python :
def par_impar(numero):
    if numero % 2 == 0:
        print(f"{numero} es un número par.")
    else:
        print(f"{numero} es un número impar.")

num = int(input("Ingrese un Número : "))
par_impar(num)

* Lenguaje C :
#include<stdio.h>
int main() {
    int num;
    printf("MOSTRAR SI ES PAR O IMPAR.\n\n");           
    printf("Ingrese Numero : ");
    scanf("%i",&num);
    if ((num%2)==0) {
        printf("\nNUMERO PAR\n");
    } else {
        printf("\nNUMERO IMPAR\n");
    }
    return 0;
}

* C++ :
#include<iostream>
using namespace std;
int main() {
    int num;
    cout << "MOSTRAR SI UN NUMERO ES PAR O IMPAR.\n\n";
    cout << "Ingrese Numero : ";
    cin << num;
    cout << endl;
    if ((num%2)==0) {
        cout << "NUMERO PAR" << endl;
    } else {
        cout << "NUMERO IMPAR" << endl;
    }
    return 0;
}

* C# :
using System;
using System.Collections.Generic;
using System.Text;
namespace aprobado_o_desaprobado
{
    class par_o_impar
    {
        static void Main(string[] args)
        {
            int num;
            Console.WriteLine("MOSTRAR SI UN NUMERO ES PAR O IMPAR.\n");
            Console.Write("Ingrese Numero : ");
            num = int.Parse(Console.ReadLine());
            if ((num % 2) == 0)
            {
                Console.WriteLine("\nNUMERO PAR");
            }
            else
            {
                Console.WriteLine("\nNUMERO IMPAR");
            }
            Console.ReadLine();
        }
    }
}

* Java Apache | NetBeans :
package full_codigos;
import java.util.Scanner;
public class par_impar {
    public static void main(String[] args) {
        Scanner ingreso=new Scanner(System.in);  
        int num;
        System.out.print("MOSTRAR SI ES PAR O IMPAR.\n\n");
        System.out.print("Ingrese Número : ");
        num = Integer.parseInt(ingreso.next());                
        if((num % 2) == 0 ){
          System.out.println("NÚMERO PAR");
        }else{
          System.out.println("NÚMERO IMPAR");
        } 
    }   
}