検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 45 for strval (0.005 sec.)
符号を反転する 7778
« gmp_mul gmp_nextprime » PHP Manual GMP 関数 符号を反転する gmp_neg (PHP 4 >= 4.0.4, PHP 5, PHP ... neg() の例 <?php $neg1 = gmp_neg ( "1" ); echo gmp_strval ( $neg1 ) . "\n" ; $neg2 = gmp_neg ( "-1" ); echo ... gmp_strval ( $neg2 ) . "\n" ; ?> 上の例の出力は以下となります ...
https://man.plustar.jp/php/function.gmp-neg.html - [similar]
階乗 7701
« gmp_export gmp_gcd » PHP Manual GMP 関数 階乗 gmp_fact (PHP 4 >= 4.0.4, PHP 5, PHP 7, PHP 8) g ... t1 = gmp_fact ( 5 ); // 5 * 4 * 3 * 2 * 1 echo gmp_strval ( $fact1 ) . "\n" ; $fact2 = gmp_fact ( 50 ); // 5 ... 0 * 49 * 48, ... etc echo gmp_strval ( $fact2 ) . "\n" ; ?> 上の例の出力は以下となります ...
https://man.plustar.jp/php/function.gmp-fact.html - [similar]
ビット AND を計算する 7640
« gmp_add gmp_binomial » PHP Manual GMP 関数 ビット AND を計算する gmp_and (PHP 4 >= 4.0.4, PHP ... nd2 = gmp_and ( "0xfffffffff4" , "0x8" ); echo gmp_strval ( $and1 ) . "\n" ; echo gmp_strval ( $and2 ) . "\n ...
https://man.plustar.jp/php/function.gmp-and.html - [similar]
ビット OR を計算する 7640
« gmp_nextprime gmp_perfect_power » PHP Manual GMP 関数 ビット OR を計算する gmp_or (PHP 4 >= 4. ... php $or1 = gmp_or ( "0xfffffff2" , "4" ); echo gmp_strval ( $or1 , 16 ) . "\n" ; $or2 = gmp_or ( "0xfffffff2 ... " , "2" ); echo gmp_strval ( $or2 , 16 ) . "\n" ; ?> 上の例の出力は以下となり ...
https://man.plustar.jp/php/function.gmp-or.html - [similar]
乱数を生成する 7640
« gmp_prob_prime gmp_random_range » PHP Manual GMP 関数 乱数を生成する gmp_random_bits (PHP 5 >= ... bits ( 5 ); // random number from 0 to 31 echo gmp_strval ( $rand1 ) . "\n" ; echo gmp_strval ( $rand2 ) . " ...
https://man.plustar.jp/php/function.gmp-random-bits.html - [similar]
次の素数を見つける 7564
« gmp_neg gmp_or » PHP Manual GMP 関数 次の素数を見つける gmp_nextprime (PHP 5 >= 5.2.0, PHP 7, ... me (- 1000 ); // -1000 より大きい次の素数 echo gmp_strval ( $prime1 ) . "\n" ; echo gmp_strval ( $prime2 ) . ...
https://man.plustar.jp/php/function.gmp-nextprime.html - [similar]
乱数を生成する 7564
« gmp_random_bits gmp_random_seed » PHP Manual GMP 関数 乱数を生成する gmp_random_range (PHP 5 > ... ); // random number between -100 and -10 echo gmp_strval ( $rand1 ) . "\n" ; echo gmp_strval ( $rand2 ) . " ...
https://man.plustar.jp/php/function.gmp-random-range.html - [similar]
正確な除算 7487
« gmp_div gmp_export » PHP Manual GMP 関数 正確な除算 gmp_divexact (PHP 4 >= 4.0.4, PHP 5, PHP 7 ... ?php $div1 = gmp_divexact ( "10" , "2" ); echo gmp_strval ( $div1 ) . "\n" ; $div2 = gmp_divexact ( "10" , " ... 3" ); // 間違った結果となります echo gmp_strval ( $div2 ) . "\n" ; ?> 上の例の出力は以下となります ...
https://man.plustar.jp/php/function.gmp-divexact.html - [similar]
GMP 数を整数に変換する 7487
« gmp_init gmp_invert » PHP Manual GMP 関数 GMP 数を整数に変換する gmp_intval (PHP 4 >= 4.0.4, P ... 648" ) . "\n" ; // 正しい結果を表示します echo gmp_strval ( "2147483648" ) . "\n" ; ?> 上の例の出力は以下とな ... 果を返します。単に GMP 数を出力したい場合には、 gmp_strval() を使用してください。 関連キーワード: 変換 , 整数 ...
https://man.plustar.jp/php/function.gmp-intval.html - [similar]
除算を行い、商と余りを得る 7426
« gmp_div_q gmp_div_r » PHP Manual GMP 関数 除算を行い、商と余りを得る gmp_div_qr (PHP 4 >= 4.0. ... E75" ); printf ( "Result is: q - %s, r - %s" , gmp_strval ( $res [ 0 ]), gmp_strval ( $res [ 1 ])); ?> 参考 ...
https://man.plustar.jp/php/function.gmp-div-qr.html - [similar]
PREV 1 2 3 4 5 NEXT