Home Backend Development PHP Tutorial Find the sum of all even numbers between two numbers in php

Find the sum of all even numbers between two numbers in php

Jul 29, 2016 am 08:49 AM
one quot

Define the Show class
Define the method sum in the class
Pass in two numbers in the method
Find the sum of all even numbers between the two numbers inside the method body
Return the calculated result
Output the returned result
The output form is as follows
The sum of all even numbers between the two numbers is: 30

Note: the smaller number is passed in first and the larger number is passed in second. The two numbers 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

The above introduces how to find the sum of all even numbers between two numbers in PHP, including the content between PHP and PHP. I hope it will be helpful to friends who are interested in PHP tutorials.

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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to cancel your Apple subscription How to cancel your Apple subscription Oct 31, 2023 pm 11:13 PM

You can easily cancel AppleOne (like AppleOne) subscriptions, as well as third-party AppStore subscriptions, on your iPhone, iPad, or Mac. Apple offers a variety of services that Apple device owners can subscribe to, including AppleMusic, AppleTV+, AppleArcade, iCloud+, AppleNews+, and AppleFitness+. It also offers these services as a bundled subscription called Apple One. Apple in March 2023 made significant price increases for several of its services, including Apple TV+, Apple Arcade and

Trezor Cold Wallet: Model One and Model T Features and Usage Guide Trezor Cold Wallet: Model One and Model T Features and Usage Guide Jan 19, 2024 pm 04:12 PM

After problems occurred in many centralized exchanges, more and more cryptocurrency investors began to transfer assets to cold wallets to reduce the risks posed by centralized exchanges. This article will introduce Trezor, the world's earliest cold wallet provider. Since the first cold wallet was launched in 2014, it has been sold in many countries around the world. Trezor's products include Model One launched in 2014 and the advanced version Model T launched in 2018. The following will continue to introduce the differences between these two products and other cold wallets. What is Trezor cold wallet? In 2014, Trezor launched the first cold wallet ModelOne. In addition to common BTC, ETH, USDT and other currencies, the wallet also supports more than 1,000 other currencies.

php提交表单通过后,弹出的对话框怎样在当前页弹出,该如何解决 php提交表单通过后,弹出的对话框怎样在当前页弹出,该如何解决 Jun 13, 2016 am 10:23 AM

php提交表单通过后,弹出的对话框怎样在当前页弹出php提交表单通过后,弹出的对话框怎样在当前页弹出而不是在空白页弹出?想实现这样的效果:而不是空白页弹出:------解决方案--------------------如果你的验证用PHP在后端,那么就用Ajax;仅供参考:HTML code

Samsung One UI 7.1 revealed to be core part of S25 series with many new features Samsung One UI 7.1 revealed to be core part of S25 series with many new features Aug 08, 2024 pm 03:32 PM

Currently, Samsung is actively preparing a software update strategy for the Galaxy series of mobile phones and tablets. The focus is on introducing the OneUI6.1.1 system to old folding screen devices, and possibly extending it to non-folding screen devices (if relevant rumors are true). At the same time, Samsung is also intensively preparing for the release of OneUI7.0 based on Android 15. It is worth noting that although these two key updates have not yet been officially released, the industry has begun to preview and speculate on the next-generation system OneUI7.1 based on Android 15. On the X platform, well-known tipster @IceUniverse revealed that OneUI7.1 will bring unprecedented major improvements to users. Specifically pointed out: "On

不用数据库来实现用户的简单的下载,代码如下,但是却不能下载,请高手找下原因,文件路劲什么的没有关问题 不用数据库来实现用户的简单的下载,代码如下,但是却不能下载,请高手找下原因,文件路劲什么的没有关问题 Jun 13, 2016 am 10:15 AM

不用数据库来实现用户的简单的下载,代码如下,但是却不能下载,请高手找下原因,文件路劲什么的没问题。

图片消失怎么解决 图片消失怎么解决 Jun 13, 2016 am 10:09 AM

图片消失如何解决先是图片文件上传$file=$_FILES['userfile'];  if(is_uploaded_file($file['tmp_name'])){$query=mysql_query("INSERT INTO gdb_banner(image_src ) VALUES ('images/{$file['name'

为什么小弟我在php上写的这个代码,在浏览器上什么都不显示 为什么小弟我在php上写的这个代码,在浏览器上什么都不显示 Jun 13, 2016 am 10:24 AM

为什么我在php上写的这个代码,在浏览器上什么都不显示啊

图片消失怎么解决 图片消失怎么解决 Apr 07, 2024 pm 03:02 PM

图片消失如何解决先是图片文件上传$file=$_FILES['userfile'];  if(is_uploaded_file($file['tmp_name'])){$query=mysql_query("INSERT INTO gdb_banner(image_src ) VALUES ('images/{$file['name'

See all articles