Ernijs_E Posted April 3, 2009 Report Share Posted April 3, 2009 Sveiki. Vai varat pateikt matemātiskās funkcijas iekš php? Man vajadzētu saskaitīšanu, dalīšanu, reizināšanu un atņemšanu! Ja varat, tad koda piemēru <?php kods ?> Paldies jau iepriekš, ar cieņu, Ernijs. Quote Link to comment Share on other sites More sharing options...
marcis Posted April 3, 2009 Report Share Posted April 3, 2009 Saskaitīšana: echo 1+1; Atņemšana: echo 2-1; Reizināšana: echo 2*1; Dalīšana: echo 2/1; Kāpināšana: echo pow(3,2); Kvadrātsakne: echo sqrt(9); Quote Link to comment Share on other sites More sharing options...
Ernijs_E Posted April 3, 2009 Author Report Share Posted April 3, 2009 Paldies, mārci! Quote Link to comment Share on other sites More sharing options...
Delfins Posted April 3, 2009 Report Share Posted April 3, 2009 OMG!! PS: tās nav fukcijas, bet operācijas.. Quote Link to comment Share on other sites More sharing options...
Ernijs_E Posted April 4, 2009 Author Report Share Posted April 4, 2009 Delfins, OMG kada atskiriba?! Vismaz kads mani saprata :P Quote Link to comment Share on other sites More sharing options...
Delfins Posted April 4, 2009 Report Share Posted April 4, 2009 izaugsi, sapratīsi :) Quote Link to comment Share on other sites More sharing options...
rollmax Posted April 4, 2009 Report Share Posted April 4, 2009 (edited) OMG!! PS: tās nav fukcijas, bet operācijas.. Viss izņemot pow un sqrt, kuras ir procedūras. Laba viela par matemātiskajām funkcijām iekš php: http://us.php.net/operators.arithmetic, kā arī http://www.developer.com/lang/php/article.php/938511 Iespējams iekš php arī ir tādi operatori kā mod un div. Edit: Gribēju vēl pateikt, ka marcis aizmirsa: echo 10%6; Tas izvadīs 4, jo tas ir atlikums. (10:6=1;A4) Edited April 5, 2009 by rollmax Quote Link to comment Share on other sites More sharing options...
bubu Posted April 5, 2009 Report Share Posted April 5, 2009 rollmax: parasti tās sauc par funkcijām, nevis procedūrām. Procedūras šķiet ir specifiskas funkcijas dažās valodās (paskāls). Un tad jau pilnam komplektam pieminam arī pārējās operācijas, kuras var veikt ar integer'iem: inc: 10++ = 11 dec: 10-- = 9 loģiskā negācija: ~10 = -11 loģiskais vai: 10 | 3 = 11 loģiskais un: 10 & 3 = 2 izslēdzošais vai: 10 ^ 3 = 9 bitu pabīdīšana pa kreisi: 10 << 3 = 80 bitu pabīdīšana pa labi: 10 >> 3 = 1 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.