Jump to content

[Java]Inmultire a doua numere in virgula mobila


iza
 Share

Recommended Posts

Inmultirea a doua numere in virgula mobila

Exemplu:

public class MultiplyTwoNumbers {

    public static void main(String[] args) {

        float first = 1.5f;
        float second = 2.0f;

        float product = first * second;

        System.out.println("The product is: " + product);
    }
}

Output:

The product is: 3.0

In programul de mai sus, avem doua numere in virgula mobila 1.5f si 2.0f stocate in variabile primul si al doilea.

Am folosit f dupa numere. Acest lucru asigura ca numerele sunt plutitoare, altfel vor fi atribuite - tip dublu.

Primul si al doilea sunt apoi inmultite folosind operatorul * și rezultatul este stocat intr-un nou produs variabil float.

In cele din urma, produsul rezultat este imprimat pe ecran folosind functia println().

Link to comment
Share on other sites

  • Tupi locked this topic
Guest
This topic is now closed to further replies.
 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.