Algoritmo para calcular el promedio de tres calificaciones

💻 Hacer un programa que muestre el promedio de 3 calificaciones, ingresando tres notas por teclado.



* PSeInt :
Algoritmo full_codigos
    Definir nota1, nota2, nota3 como Entero;
    Definir prom como Real;
    Escribir "PROMEDIO DE TRES NOTAS";
    Escribir "";
    Escribir Sin Saltar "Ingrese Nota 01 : ";
    Leer nota1;
    Escribir Sin Saltar "Ingrese Nota 02 : ";
    Leer nota2;
    Escribir Sin Saltar "Ingrese Nota 03 : ";
    Leer nota3 ;
    Escribir "";
    prom <- (nota1 + nota2 + nota3 )/3;
    Escribir "EL PROMEDIO ES : ", prom;	
FinAlgoritmo

* Python :
# Obtener las notas del usuario
nota1 = float(input("Ingrese la primera nota: "))
nota2 = float(input("Ingrese la segunda nota: "))
nota3 = float(input("Ingrese la tercera nota: "))

# Calcular el promedio
promedio = (nota1 + nota2 + nota3) / 3

# Mostrar el resultado
print("El promedio de las tres notas es:", promedio)

* Lenguaje C :
#include<stdio.h>
int main() {
    float nota1, nota2, nota3, prom=0; 
    printf("PROMEDIO DE 3 NOTAS.\n\n");
    printf("Ingrese Nota 01 : ");
    scanf("%f", &nota1);
    printf("Ingrese Nota 02 : ");
    scanf("%f", &nota2);
    printf("Ingrese Nota 03 : ");
    scanf("%f", &nota3);
    prom = (nota1 + nota2 + nota3)/3;
    printf("\nEL PROMEDIO ES : %.2f\n", prom);
    return 0;
}  

* C++ :
#include<iostream>
using namespace std;
int main() {
    float nota1, nota2, nota3, prom(0.0f);
    const int nDec(4);
    cout << "PROMEDIO DE TRES NOTAS.\n\n";              
    cout << "Ingrese Nota 01 : ";
    cin >> nota1;
    cout << "Ingrese Nota 02 : ";
    cin >> nota2;
    cout << "Ingrese Nota 03 : ";
    cin >> nota3;
    prom = (nota1 + nota2 + nota3)/3;                       
    cout.precision(nDec);
    cout << "\nEL PROMEDIO ES : " << prom << endl;
    return 0;
}

* C# :
using System;
using System.Collections.Generic;
using System.Text;
namespace full_codigos
{
    class promedio_notas
    {
        static void Main(string[] args)
        {
            double nota1=0, nota2=0, nota3=0, prom=0;
            Console.WriteLine("04. PROMEDIO DE 3 NOTAS.\n");
            Console.Write("Ingrese Nota 01 : ");          
            nota1 = double.Parse(Console.ReadLine());
            Console.Write("Ingrese Nota 02 : ");
            nota2 = double.Parse(Console.ReadLine());
            Console.Write("Ingrese Nota 03 : ");   
            nota3 = double.Parse(Console.ReadLine());
            prom = (nota1 + nota2 + nota3) / 3;
            Console.WriteLine("\nEL PROMEDIO ES : " + String.Format("{0,6:##.00}", prom) );
            Console.ReadLine();
        }
    }
}  

* Java Apache | NetBeans :
package full_codigos;
import java.util.Scanner;
public class promedio_notas {
    public static void main(String[] args) {
        Scanner ingreso=new Scanner(System.in);
        int nota1, nota2, nota3;
        double prom=0;
        System.out.print("Ingrese Nota 1:");
        nota1 = Integer.parseInt(ingreso.next());
        System.out.print("Ingrese Nota 2:");
        nota2 = Integer.parseInt(ingreso.next());
        System.out.print("Ingrese Nota 3:");
        nota3 = Integer.parseInt(ingreso.next());
        prom = (nota1 + nota2 + nota3)/3;
        System.out.println("EL PROMEDIO ES : " + prom);        
    }   
}