Find the sum of all even numbers between two numbers in php
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('content-type:text/html;charset=utf8'); 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);//输入两个数值
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.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

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

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

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

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

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

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