<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><style type="text/css"&g…
--第3题 利用循环求n的阶乘 --参数检查是否是自然数 function IsNaturalNumber(n) ~= )then return false else return true end end function factorial(n) --参数检查 if(not IsNaturalNumber(n))then print("参数有误") return end --若输入的是0直接返回1 )then end --输入的是正整数 local res = , - do res…
#-*- coding:UTF-8 -*- #环境:python3 print("Enter the numbers between 1 and 100:") enterList=[] #记录输入的元素 while 1: a = int(input(">>>")) #将输入转换为int型 if a == 0: print ("Your input:",enterList) break #结束输入 if a<1 or a&g…
/** *把1到100之间的数的偶数相加 */ class Demo{ public static void main(String[] args){ int i =1; int sum = 0; do{ if(i % 2 != 0){ sum += i; } //累加器需要在if语句外面 i++; }while(i <= 100); System.out.println(sum); } }…
整理出自项目中一个需求,求两个数之间的数字. const week = function(arr,arr2){ let a=parseInt(arr); let b=parseInt(arr2); let c = []; if (arr - b < 0) { const number = Math.abs(a - b) + 1; for (let i = a; i < a + number; i++) { c.push(i); } } else if (a - b === 0) { c.pus…
2.求1-100的所有数的和 x=0for y in range (1,101): x=x+yprint(x)#Python for循环中可以循环一个列表或者某一个字符串下面是for的基本格式,英文是格式不变的:for 变量 in 列表: 过程else: #cla= ["a", "b", "c", "Python"]cla是我们自己命名的之后带等于号这个是列表的意思[ ],在[ ]放入需要循环的值 #除了自定义的列表,我们还能…