Skaičiavimų PHP pavyzdys
Php / / July 04, 2021
Palieku programavimo pavyzdį PHP. Tai veikia per paprastai, tereikia sukonfigūruoti du kintamuosius - $ FirstValue ir $ SecondValue - šiuo metu jie yra 10 ir 30.
php
# komentarai.
# Paprastas PHP programavimo pavyzdys
# Atliekami paprasti skaičiavimai tarp iš anksto nustatytų kintamųjų
# For ExampleDe. Com
$ FirstValue = 10; // Komentaras: Redaguokite skaičių, kad pakeistumėte pirmąją vertę
$ SecondValue = 30; // Komentaras: Redaguokite skaičių, kad pakeistumėte antrąją vertę
// Skaičiavimo skyrius
$ sum = $ FirstValue + $ SecondValue; // Pridedame
$ atimtis = $ FirstValue - $ SecondValue; // Atimame
$ multiplication = $ FirstValue * $ SecondValue; // Padauginame
$ padalijimas = $ FirstValue / $ SecondValue; // Skirstome
// Toliau sąskaitas rodome tekstiniu formatu
echo " tekstinis formatas
";
echo " suma stiprus > tarp ". $ FirstValue." ir <
". $ SecondValue." yra ". $ suma. "
";
aidas "Tarp atimtis ". $ FirstValue." ir /
". $ SecondValue. " yra ". $ atima. "
";
aidas "The padauginimas tarp ". $ FirstValue." ir
<
". $ SecondValue." yra ". $ daugyba."
";
aidas" padalijimas tarp ". $ FirstValue." ir
<
". $ SecondValue." yra ". $ padalijimas. „
“; // Toliau mes parodysime sąskaitas matematiniu formatu
echo " Mathematical Format
";
echo "". $ FirstValue. "+". $ SecondValue. " = ". $ sum."
";
aidas" ". $ FirstValue." - ". $ SecondValue". = ". $ atimkite."
";
aidas" ". $ FirstValue." * ". $ SecondValue." = ". $ daugyba."
";
aidas" ". $ FirstValue." / ". $ SecondValue". = ". $ padalijimas."
";
Šis PHP pavyzdys parodytų tai
The suma Įeiti 10 Y 30 tai yra 40
The atimtis Įeiti 10 Y 30 tai yra -20
The dauginimas Įeiti 10 Y 30 tai yra 300
The padalijimas Įeiti 10 Y 30 tai yra 0.333333333333
10 + 30 = 40
10 - 30 = -20
10 * 30 = 300
10 / 30 =0.333333333333