search
HomeWeb Front-endJS TutorialSeveral ways to use while loop to calculate and print the sum of even numbers from 2 to 100

Use while loop to calculate and print the sum of even numbers from 2 to 100 (three methods)

1. Loop—while
Syntax: while (condition) {

//Loop body-loop operation//Update loop conditions++/--;

}

##2.continue
Function: Terminate the execution of this cycle and continue the next cycle

<p style="margin-bottom: 7px;"><!doctype html><br/><html lang="en"><br/> <head><br/>	 <meta charset="UTF-8"><br/>     <title>Document</title><br/>	 <link rel="stylesheet" style="text/css" href=""><br/>	 <style><br/><br/><br/>	 </style><br/> </head><br/> <body><br/>	 <script><br/>		计算打印2——100的偶数和<br/>	// 方法1:<br/>		function sumOs(){<br/>			var os=0;<br/>			var i=2;<br/>			while(i<=100){<br/>				os+=i;<br/>				i+=2;<br/>			}<br/>		console.log(os);<br/>		}<br/>		sumOs();<br/>	<br/>	//方法2:<br/>		function sumOs(){<br/>			var os=0;<br/>			var i=1;<br/>			while(i<=100){<br/>				if(i%2==0){<br/>					os+=i;<br/>				}<br/>			i++;<br/>			}<br/>		console.log(os);<br/>		}<br/>		sumOs();<br/>	<br/>	//方法3:<br/>		function sumOs(){<br/>			var os = 0;<br/>			var i = 1;<br/>			while(i<=100){<br/>					if(i%2==1){<br/>						i++;<br/>						continue;<br/>					}<br/>					os += i;<br/>					i++;<br/>				}<br/>				console.log(os);<br/>			}<br/>		sumOs();<br/><br/><br/>	//扩展:循环从弹窗中录入信息,并且打印,直到输入exit为止<br/>		function printMsg(){<br/>			while(true){<br/>				var msg=prompt("请输入一个字段啊");<br/>				if(msg=="exit"){<br/>					break;<br/>				}else{<br/>					console.log(msg);<br/>				}<br/>			}<br/>		}<br/>		printMsg();<br/>	</script><br/> </body><br/></html><br/></p>

The above is the detailed content of Several ways to use while loop to calculate and print the sum of even numbers from 2 to 100. For more information, please follow other related articles on the PHP Chinese website!

Statement
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
在C语言中,while(1)和while(0)之间的区别是什么?在C语言中,while(1)和while(0)之间的区别是什么?Aug 31, 2023 am 10:45 AM

我们知道在C语言中,'while'关键字用于定义一个循环,该循环根据传递给循环的条件来工作。现在,由于条件可以有两个值,即真或假,所以如果条件为真,则while块内的代码将被重复执行,如果条件为假,则代码将不会被执行。现在,通过将参数传递给while循环,我们可以区分while(1)和while(0),因为while(1)是一个条件始终被视为真的循环,因此块内的代码将开始重复执行。此外,我们可以说明,传递给循环并使条件为真的不是1,而是如果任何非零整数传递给while循环,则它将被视为真条件,因

php怎么实现Web页面的打印功能php怎么实现Web页面的打印功能Mar 24, 2023 pm 04:11 PM

PHP 打印功能实现的步骤和技巧 在 Web 开发的过程中,打印功能是相当重要的一种需求。相信大家都遇到过需要从网页中打印出某些内容的情况,比如收据、报告、合同等。本文将介绍如何使用 PHP 实现 Web 页面的打印功能。

ppt打印出来显示不全怎么解决ppt打印出来显示不全怎么解决Jul 06, 2023 pm 02:05 PM

ppt打印出来显示不全解决方法:1、检查页面设置,确保页面大小与打印纸张大小相匹配;2、调整缩放比例,尝试不同的缩放比例,直到能在打印预览中看到完整的幻灯片内容;3、调整文字框大小,选中文字框,然后拖动边框以调整大小,以确保文字能够完整显示在打印页面上;4、优化图片分辨率,使用图像编辑软件将图片的分辨率调整为适合打印的大小;5、打印预览,用打印预览来检查PPT内容是否完整显示。

传真和打印有区别吗传真和打印有区别吗Nov 06, 2022 am 10:59 AM

传真和打印是有区别的,其区别有:1、传真是将文件通过传真机从一方传到较远地方的另一方,而打印是只在电脑上将文件或者材料打印出来;2、打印机种类繁多,主要功能就是打印,而传真机主要的核心功能是发送和接收;3、打印机只能从计算机上发送他们想要的文件,而两台打印机不能相互传输数据,而传真机是在电话的基础上增加数据传输功能,两台传真机可以相互发送文件,无需计算机也可以接收文件。

PHP表单处理:表单数据导出与打印PHP表单处理:表单数据导出与打印Aug 09, 2023 pm 03:48 PM

PHP表单处理:表单数据导出与打印在网站开发中,表单是不可或缺的一部分。当网站上的表单被用户填写并提交后,开发者需要对这些表单数据进行处理。本文将介绍如何使用PHP处理表单数据,并演示如何将数据导出为Excel文件和打印出来。一、表单提交与基本处理首先,需要创建一个HTML表单,供用户填写并提交数据。假设我们有一个简单的反馈表单,包含姓名、邮箱和评论。HTM

在C语言中编写一个程序,打印出N个五角数的序列在C语言中编写一个程序,打印出N个五角数的序列Aug 25, 2023 pm 02:25 PM

程序说明五维体数是帕斯卡三角形的任意一行中第五个数字,从左到右或从右到左开始,起始于5项行14641。这种数字的前几个是1,5,15,35,70,126,210,330,495,715,1001,1365Pentatopenumbersbelongintheclassoffiguratenumbers,whichcanberepresentedasregular,discretegeometricpatterns.Theformulaforthenthpentatopicnumberis$$\l

如何在应用程序防护中启用或禁用打印如何在应用程序防护中启用或禁用打印Apr 16, 2023 pm 01:55 PM

除了WindowsDefender和适用于Windows11的第三方防病毒工具之外,还有更多方法可以保护您的系统。MicrosoftDefenderApplicationGuard是Windows的功能之一,可以帮助您阻止病毒和恶意软件。尽管此功能在大多数用户的PC中非常受欢迎,但有些人可能会发现它受到限制,因为它可能会限制某些功能,例如打印。无论如何,在本文中,我们将根据您的需要向您展示如何启用或禁用它。什么是MicrosoftDefenderApplicationGuardMana

使用PHP和XML实现网页的打印和导出PDF使用PHP和XML实现网页的打印和导出PDFAug 10, 2023 pm 12:42 PM

使用PHP和XML实现网页的打印和导出PDF在现代社会中,网页的打印和导出PDF已经成为很常见的需求。使用PHP和XML可以轻松地实现这些功能。在本文中,我们将学习如何使用PHP和XML来实现网页的打印和导出PDF。一、网页的打印首先,我们需要创建一个包含网页内容的XML文件。例如,我们可以创建一个名为"content.xml"的文件,并在该文件中包含网页的

See all articles

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 agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),