Algoritmo que muestra el costo de un llamada telefonica

💻 Dado la duración (en minutos) de una llamada telefónica, calcular su costo, de la siguiente manera: Hasta 5 min el costo es 0.90. Por encima de 5 min el, costo es 0.90+0.20 por cada minuto adicional a los 5 primeros min.



* PSeInt :
Algoritmo full_codigos
    Definir Llamada como Entero;
    Escribir "CALCULAR EL COSTO DE UNA LLAMADA TELEFÓNICA.";
    Escribir " ";
    Escribir Sin Saltar "Ingrese los Minutos de su Llamada : ";
    Leer Llamada;
    Escribir "";
    Si (Llamada <= 5) Entonces
        Escribir "COSTO POR LLAMADA ES : $", Llamada * 0.9;
    SiNo
        Escribir "COSTO POR LLAMADA ES : $", (5*0.9)+((Llamada - 5)*1.1);
    FinSi
FinAlgoritmo

* Python :
print("CALCULAR EL COSTO DE UNA LLAMADA TELEFÓNICA.")
llamada = int(input("Ingrese los Minutos de su Llamada : "))
if (llamada <= 5):
    print("COSTO POR LLAMADA ES : ",llamada*0.9)
else:
    print("COSTO POR LLAMADA ES : ",(5*0.9)+((llamada-5)*1.1))

* Lenguaje C :
#include<stdio.h>
int main() {
    int llamada;
    printf("CALCULAR EL COSTO DE UNA LLAMADA.\n\n");    
    printf("Ingrese los minutos de su llamada : ");
    scanf("%i",&llamada);
    if (llamada <= 5) {
        printf("\nCOSTO POR LLAMADA ES : $%.2f\n",llamada*0.9);
    } else {
        printf("\nCOSTO POR LLAMADA ES : $%.2f\n",(5*0.9)+((llamada-5)*1.1));
    }
    return 0;
}

* C++ :
#include<iostream>
using namespace std;
int main() {
    int llamada;
    cout << "CALCULAR EL COSTO DE UNA LLAMADA.\n\n";       
    cout << "Ingrese los minutos de su llamada : ";
    cin << llamada;
    cout << endl;
    if (llamada <= 5) {
        cout << "COSTO POR LLAMADA ES : $" << llamada*0.9 << endl;
    } else {
        cout << "COSTO POR LLAMADA ES : $" << (5*0.9)+((llamada-5)*1.1) << endl;
    }
    return 0;
}

* C# :
using System;
using System.Collections.Generic;
using System.Text;
namespace programacion_work
{
    class costo_llamada
    {
        static void Main(string[] args)
        {
            int llamada;
            Console.WriteLine("CALCULAR EL COSTO DE UNA LLAMADA.\n");
            Console.Write("Ingrese los minutos de su llamada : ");
            llamada = int.Parse(Console.ReadLine());
            if (llamada <= 5)
            {
                Console.WriteLine("\nCOSTO POR LLAMADA ES : $" + String.Format("{0,4:##.00}",llamada * 0.9));
            }
            else
            {
                Console.WriteLine("\nCOSTO POR LLAMADA ES : $" + String.Format("{0,4:##.00}",(5 * 0.9) + ((llamada - 5) * 1.1)));
            }
            Console.ReadLine();
        }
    }
}

* Java Apache | NetBeans :
package full_codigos;
import java.util.Scanner;
public class costo_llamada {
    public static void main(String[] args) {
        Scanner ingreso=new Scanner(System.in);  
        int llamada;
        System.out.print("COSTO DE UNA LLAMADA TELEFÓNICA.\n\n");              
        System.out.print("Ingrese los minutos de su llamada : ");
        llamada = Integer.parseInt(ingreso.next());
        if(llamada <= 5){
            System.out.println("COSTO DE LLAMADA : " + (llamada * 0.9));
        }else{
            System.out.println("COSTO DE LLAMADA : " + ((5*0.9)+((llamada-5)*1.1)));
        }
    }   
}