我如何使用for循环来获得添加结果?

时间:2015-05-24 06:45:42

标签: php loops math for-loop

我的数学查询是(1 + 5 + 10 + 15 + 20 + 25 =?)

我如何使用for循环来获得添加结果?

1 个答案:

答案 0 :(得分:5)

  $answer = 1;

  for($x=1;$x<6;$x++){
      $answer+=5*$x;
  }

  echo $answer;