💻 Escriba un programa dónde se ingrese el tiempo necesario para un proceso en horas, minutos y segundos. Calcule el costo total del proceso sabiendo que el costo por segundo es $0,25.
* PSeInt :
Algoritmo full_codigos
Definir H, M, S como Entero;
Definir Costo_Tot como Real;
Escribir Sin Saltar "Ingrese las Horas : ";
Leer H;
Escribir Sin Saltar "Ingrese los Minutos : ";
Leer M;
Escribir Sin Saltar "Ingrese los Segundos : ";
Leer S;
Escribir " ";
Costo_Tot <- (((H * 3600) + (M * 60) + S) * 0.25);
Escribir "Total de Segundos : ", ((H * 3600) + (M * 60) + S);
Escribir "Costo Total : $ ", Costo_Tot, " [Costo por seg. $25]";
FinAlgoritmo
* Python :
# Calcular el costo total en segundos.
def Calcular(h,m,s):
costoTot = ((h*3600)+(m*60)+s) * 0.25
print("\nCosto Total : $",costoTot)
h = int(input("Ingrese las horas : "))
m = int(input("Ingrese los minutos : "))
s = int(input("Ingrese los segundos : "))
Calcular(h,m,s)
* Lenguaje C :
#include<stdio.h>
int main() {
float costo_tot;
int h, m, s;
printf("Ingrese las Horas : ");
scanf("%i",&h);
printf("Ingrese las Minutos : ");
scanf("%i",&m);
printf("Ingrese las Segundos : ");
scanf("%i",&s);
printf("\nTotal de Segundos : %d\n",((h*3600)+(m*60)+s));
costo_tot = (((h*3600)+(m*60)+s)*0.25);
printf("Costo Total : $%.2f\n",costo_tot);
return 0;
}
* C++ :
#include<iostream>
using namespace std;
int main() {
float costo_tot;
int h, m, s;
cout << "Ingrese las Horas : ";
cin >> h;
cout << "Ingrese las Minutos : ";
cin >> m;
cout << "Ingrese las Segundos : ";
cin >> s;
cout << endl;
cout << "Total de Segundos : " << ((h*3600)+(m*60)+s) << endl;
costo_tot = (((h*3600)+(m*60)+s)*0.25);
cout << "Costo Total : $" << costo_tot << endl;
return 0;
}
* C# :
using System;
using System.Collections.Generic;
using System.Text;
namespace full_codigos
{
class costo_x_segundo
{
static void Main(string[] args)
{
int h, m, s;
double costo_tot;
Console.Write("Ingrese las Horas : ");
h = int.Parse(Console.ReadLine());
Console.Write("Ingrese las Minutos : ");
m = int.Parse(Console.ReadLine());
Console.Write("Ingrese las Segundos : ");
s = int.Parse(Console.ReadLine());
Console.WriteLine("\nTotal de Segundos : " + ((h * 3600) + (m * 60) + s));
costo_tot = (((h * 3600) + (m * 60) + s) * 0.25);
Console.WriteLine("Costo Total : $" + costo_tot);
Console.ReadLine();
}
}
}
* Java Apache | NetBeans :
package full_codigos;
import java.util.Scanner;
public class costo_x_segundo {
public static void main(String[] args) {
Scanner ingreso=new Scanner(System.in);
int H, M, S;
double costo_tot;
System.out.print("Ingrese Hora : ");
H = Integer.parseInt(ingreso.next());
System.out.print("Ingrese Minuto : ");
M = Integer.parseInt(ingreso.next());
System.out.print("Ingrese Segundo : ");
S = Integer.parseInt(ingreso.next());
costo_tot = (((H * 3600)+(M * 60)+S) * 0.25);
System.out.println("COSTO TOAL: " + costo_tot);
}
}