How to write php to calculate the sum of even numbers

王林
Release: 2023-02-26 17:50:02
Original
4117 people have browsed it

How to write php to calculate the sum of even numbers

PHP calculates the sum of even numbers

1. Define the Show class and define the method sum

2. Method Pass in two numbers, find the sum of all even numbers between the two numbers inside the method body, return the calculated result to

3, and output the returned result

Note: the two numbers passed in, the smaller number passed in first and the larger number passed in second, cannot be equal.

The code is as follows:

<?php 
header(&#39;content-type:text/html;charset=utf8&#39;);
 
class show{
	public $one;
	public $two;
	
	function sum($one,$two){
		$num=0;
		if($one>$two){
			for ($i=$two; $i <= $one; $i++) { 
				if($i%2==0){
					$num+=$i;
				}
			}
		}else if($two>$one){
			for ($i=$one; $i <= $two ; $i++) { 
				if($i%2==0){
					$num+=$i;
				}
			}
		}else{
			return "错误,两个数不能相等";//如果两个数相等
		}
		return "两数之间的所有偶数和为".$num;
	}
 
}
//实例化类
$show=new show();
//进行调用
echo $show->sum(20,30);//输入两个数值
Copy after login

Recommended tutorial: PHP video tutorial

The above is the detailed content of How to write php to calculate the sum of even numbers. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template