Muestra el mayor valor de diez numeros ingresados

💻 Hacer un programa que muestre el mayor de diez números ingresados por teclado, usar estructura de control repetitiva.



* PSeInt :
Algoritmo full_codigos
    Definir f, num, may como Entero;	    
    may <- 0;
    Escribir "MOSTRAR EL MAYOR DE 10 NÚMEROS INGRESADOS.";
    Para f <- 1 Hasta 10 con Paso 1 Hacer
        Escribir Sin Saltar "NÚMERO ",f," : ";
        Leer num;
        SI (may < num) Entonces
            may <- num;
        FinSi
    FinPara    
    Escribir "EL NÚMERO MAYOR ES : ", may
FinAlgoritmo

* Python :
print("MUESTRA EL MAYOR DE 10 NÚMEROS")
may = 0
for f in range(10):
    num = int(input("NÚMERO : "))
    if may < num:
        may = num;
print("EL NÚMERO MAYOR ES : ", may)

* Lenguaje C :
#include<stdio.h>
int main() {
   int mayor, num;
   mayor = 0;
   for (int f=1;f<=10;f+=1) {
      printf("Ingrese Numero %i : ",f);
      scanf("%i",&num);
      if (mayor < num) {
         mayor = num;
      }
   }
   printf("El Mayor es : %i\n",mayor);
   return 0;
}

* C++ :
#include<iostream>
using namespace std;
int main() {
    int num, may=0;	
    for (int f=1; f<=10; f++){
        cout << "NUMERO " << f << " : ";
        cin >> num;
        if(may < num){
            may = num;
        }
    }
    cout << "EL NUMERO MAYOR ES : "<< may << endl;
    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 mayor_10_numeros {
    public static void main(String[] args) {   
        Scanner ingreso=new Scanner(System.in);
        int num, may=0;		
        for (int f=1; f<=10; f++){
            System.out.print("NUMERO : ");
            num = Integer.parseInt(ingreso.next());  
            if(may < num){
                may = num;
            }
        }  
        System.out.println("EL NUMERO MAYOR ES : " + may);
    }
}