注意:此页面搜索的是所有试题
题目内容
(金融学(第二学期))
根据给定的程序,指出其功能:
input “n=?” to n
For i = 2 To n
For j = 2 To sqr(i)
If i % j = 0
Exit
endfor
If j > Sqr(i)
? i
endfor
A) 输出n以内的质数 B) 输出n以内的奇数
C) 输出n以内的偶数 D) 输出n以内能被j整除的数
input “n=?” to n
For i = 2 To n
For j = 2 To sqr(i)
If i % j = 0
Exit
endfor
If j > Sqr(i)
? i
endfor
A) 输出n以内的质数 B) 输出n以内的奇数
C) 输出n以内的偶数 D) 输出n以内能被j整除的数
参考答案