declare i number:=1; j number:=0; sum1 number:=0;begin while(i<100) loop i:=i+1; j:=2; while(mod(i,j)!=0) loop j:=j+1; if(i=j) then exit; end if; end loop; if(i=j) then sum1:=sum1+i; DBMS_OUTPUT.PUT_LINE(i); end if; end loop; DBMS_OUTPUT.PUT_LINE(SUM
#-*- 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的自然数中,除了1和此整数自身外,没法被其他自然数整除的数.换句话说,只有两个正因数(1和自己)的自然数即为素数(也叫质数).比1大但不是素数的数称为合数.1和0既非素数也非合数. package main import ( "fmt" ) func main() { fmt.Println("1-100之间的质数为:") // i应直接从2开始 for i := 2; i <= 100; i++ { for n := 2; n <=
9.1 找出100到200之间的质数. public class Test { public static void main(String[] args){ for (int j=100; j<200; j++){ int k; for(k=2; k<j; k++){ int tmp = j%k; if (tmp == 0){ /*如果有一个k,能够除开j
<!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
/** *把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); } }
python打印列表的下标和值的例子: In [1]: list01=[1,4,5] In [10]: def funct01(ll): ....: for index,value in enumerate(ll): ....: print index,value ....: In [11]: funct01(list01)0 11 42 5