<?php // 変数の定義 $x = 100; $y = 200; $z = 300; // 3つの値の平均をだして出力 $answer = ($x + $y + $z) / 3; print ($answer); ?>