Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.

Alguien me puede ayudar con un programa de Java?...?

Escribe una aplicación que reciba como entrada la temperatura en grados Celsius y despliegue la temperatura en grados Fahrenheit. La fórmula para convertir Celsius a Fahrenheit es: Fahrenheit = 1.8 x Celsius + 32

Escribe una aplicación que calcule el total de entradas vendidas para un concierto. Hay 3 tipos de asiento A, B y C. El programa acepta el número de entradas vendidas y el precio de una entrada para cada uno de los 3 tipos de asientos. El total de ventas se calcula de la siguiente forma:ventasTotales = numeroAsientos_A + numeroAsientos_B + numeroAsientos_C;

1 Answer

Rating
  • 1 decade ago
    Favorite Answer

    ESTE ES EL DE LOS GRADOS YA TIENE LA APLICACION DEL MAIN DENTRO, SOLO EJECUTAS:

    import javax.swing.*;

    public class grados {

    int temp;

    public void pedir()

    {

    temp = Integer.parseInt(JOptionPane.showInputDialog("Introduzca la temperatura en grados C°"));

    mostrar();

    }

    public void mostrar()

    {

    JOptionPane.showMessageDialog(null,"La temperatura en Grados F° es: "+((temp*1.8)+32));

    }

    public static void main(String[] args) {

    // TODO Auto-generated method stub

    grados grad = new grados();

    grad.pedir();

    }

    }

Still have questions? Get your answers by asking now.