内容へ移動
fl8 Wiki
ユーザ用ツール
ログイン
サイト用ツール
検索
ツール
文書の表示
以前のリビジョン
バックリンク
最近の変更
メディアマネージャー
サイトマップ
ログイン
>
最近の変更
メディアマネージャー
サイトマップ
現在位置:
Dokuwiki.fl8.jp
»
12_perl
»
01_module
»
01 Math::Round
トレース:
•
12 Laravel
•
10 Laravel セッション
12_perl:01_module:01_math_round
この文書は読取専用です。文書のソースを閲覧することは可能ですが、変更はできません。もし変更したい場合は管理者に連絡してください。
====== 01 Math::Round ====== [[http://search.cpan.org/dist/Math-Round/Round.pm]] <code> use warnings; print round(-198.25), "\n"; # -198 print round(198.25), "\n"; # 198 print round(198.75), "\n"; # 199 </code> <code> use warnings; print nearest(1, 198.25), "\n"; # 198 print nearest(0.1, 198.25), "\n"; # 198.3 print nearest(10, 198.25), "\n"; # 200 print nearest(0.1, -198.25), "\n"; # -198.3 </code>
12_perl/01_module/01_math_round.txt
· 最終更新: 2014/09/25 05:03 by
matsui
ページ用ツール
文書の表示
以前のリビジョン
バックリンク
文書の先頭へ