holç
an anonymous user
·
C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCompiler {
class Program {
public static void Main(string[] args) {
int horastrabajadas;
float costohora;
float sueldo;
string linea;
Console.Write("Ingrese Horas Trabajadas por el Operario \n ");
linea = Console.ReadLine();
horastrabajadas = int.Parse(linea);
Console.Write("Ingrese el pago por hora:\n");
linea = Console.ReadLine();
costohora = float.Parse(linea);
sueldo = horastrabajadas*costohora;
Console.Write("El sueldo total del operario es: ");
Console.Write(sueldo);
Console.ReadKey();
}
}
}
Output
Embed on website
To embed this program on your website, copy the following code and paste it into your website's HTML:
Comments
This comment belongs to a banned user and is only visible to admins.
This comment belongs to a deleted user and is only visible to admins.