资源描述:
《计算机二级VF试题库(1)》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、操作题1计算1-1/2+1/3-1/4+……+1/9-1/10的值,结果存放在变量s中,用?输出s的值。(用循环语句实现,循环变量用i表示,程序运行结果保留4位小数)。s=;for;s=s+;(-1)^;1/i;endf;?
2、s=;for;s=s+;(-1)^;1/i;next;?
3、s=;do;whil;s=s+;(-1)^;1/i;endd;?
4、s=;for;s=s+;=-;endf;?
5、s=;for;s=s+;=-;*;endf;?
6、s=;for;s=s+;=-;next;?
7、s=;do;whil;s=s+;=-1;endd;?
8、0.64562计算1-1/
9、3+1/5-1/7+1/9……的前20项的和,结果存放在变量s中,用?输出结果。(用for循环语句实现,循环变量用i表示,程序运行结果保留4位小数)。s=;=1;for;40;s=s+;/;=-;endf;?
10、s=;=1;for;40;s=s+;/;=-;next;?
11、s=;=1;for;40;if;mod(;s=s+;/;=-;endi;endf;?
12、s=;=1;for;40;if;mod(;s=s+;/;=-;endi;next;?0.77293计算1-1/2+1/4-1/6+1/8……的前10项的和,结果存放在变量s中,用?输出结果。(用循环语句实现,循
13、环变量用i表示)。for;s=s+;(-1)^;1/i;endf;?
14、for;s=s+;(-1)^;1/i;next;?
15、do;whil;s=s+;(-1)^;1/i;i=i+;endd;?
16、for;s=s+;=-;endf;?
17、for;s=s+;=-;next;?
18、do;whil;s=s+;=-;i=i+;endd;?
19、for;s=s+;(-1)^;1/(2*i);endf;?
20、for;s=s+;(-1)^;1/(2*i);next;?
21、do;whil;s=s+;(-1)^;1/(2*i);i=i+;endd;?0.62724"统计100到999之间水仙花数
22、的个数,结果放在n中,并用?输出.(注意:程序中不允许使用有关字符的命令)注:形如153=1^3+5^3+3^3的数为水仙花数."for;int;%;if;n=n+;endi;endf;?
23、do;whil;int;%;if;endi;n=n+;endd;?
24、do;whil;int;%;if;endi;++;endd;?45"求5!+6!+7!+8!+9!+10!的值,结果放在s中,并用?输出s.(循环结构必须使用for循环)。"s=0;for;5;10;=1;for;=1;*;endf;s=s+;endf;?
25、s=0;for;5;10;=1;for;=1;*;
26、next;s=s+;next;?
27、s=0;for;5;10;=1;for;=1;*;next;s=s+;endf;?
28、s=0;for;5;10;=1;for;=1;*;endf;s=s+;next;?40378806计算1+3!+5!+7!+9!的值,结果存在变量s中,用?输出s.(利用循环结构)s=0;for;=1;step;2;for;=1;endf;s=s+;endf;?
29、s=0;for;=1;step;2;=1;dowhil;*;+;endd;s=s+;next;?
30、s=0;do;whil;+2;for;endf;s=s+;endd;?
31、s=0;do;
32、whil;+=2;for;next;s=s+;endd;?
33、s=0;for;=1;step;2;for;=1;next;s=s+;next;?
34、3680477"输出100至999之间的最大的水仙花数.(结果放在n中,并用?输出。注意:程序中不允许使用有关字符的命令)如:153是一个水仙花数,因为153=1^3+5^3+3^3"for;int;%;if;n=;endi;endfo;?
35、do;whil;int;%;if;n=;endi;endd;?
36、for;int;mod(;if;n=;endi;endfo;?
37、do;whil;int;mod(;if;n=;end
38、i;endd;?4078"有一分数序列:2/1,3/2,5/3,8/5,13/8,21/13,……,试求出这个数列的前30项之和,结果放在变量s中,并用?输出s.(程序运行结果保留4位小数)"s=;for;s=s+;=;=;=;endf;?
39、s=;do;whil;s=s+;=;=;=;+1;endd;?
40、s=;for;s=s+;=;=;=;next;?48.84069统计3至100之间的质数的个数,结果放在变量n中,并用?输出n.n=;for;for;if;mod(;=0;exit;endi;endf;if;n=n+1;endi;endf;?
41、n=;do;wh
42、il;do;whil;if;mod(;