VF常见20道编程题(16页).doc
《VF常见20道编程题(16页).doc》由会员分享,可在线阅读,更多相关《VF常见20道编程题(16页).doc(16页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、-1、求解AX2+BX+C=0的根、其中A、B、C三个参数由键盘输入。一元二次方程的求根公式是:X=-bb-4ac/2acleartext 一元二次方程求解 ax2+bx+c=0endtextinput 请输入a的值: to ainput 请输入b的值: to binput 请输入c的值: to cm=b*b-4*a*cif m=0 x1=(-b+sqrt(m)/(2*a) x2=(-b-sqrt(m)/(2*a) ?x1的值是:,x1 ?x2的值是:,x2 else ?此方程无实根!endif2、编写程序将1-100之间所有能被7和3整除的整数输出clearfor i=1 to 100 if
2、 i%3=0 and i%7=0 ?i endifendfor3、编写程序计算e,e的近似值计算公式为:e=1+1/1!+1/2!+1/3!+.+1/n!,直到1/n!0.000001为止cleare=1n=1do while .t. k=1 for i=1 to n k=k*i endfor m=1/k e=e+m if m0.000001 exit endif n=n+1enddo?e=1+1/1!+1/2!+1/3!+1/n!=,e4、编写程序,计算1!+2!+3!+.N!=?clearinput 请输入n的值: to ns=0t=1for i=1 to n t=t*i s=s+tend
3、for?1!+2!+3!+.N!=,s5、从键盘输入十个数,将它们进行降序排列。cleardime a(10)for i=1 to 10 input 请输入一个数: to a(i)endfor?降序排列为:for i=1 to 9 for j=i+1 to 10 if a(i)a(j) k=a(i) a(i)=a(j) a(j)=k endif endfor ?alltrim(str(a(i)+ endfor?alltrim(str(a(i)6、(1)输出有*号组成的图形: * * *clearfor i=-3 to 3 ?space(abs(i) for j=1 to 7-abs(i)*2
4、?* endforendfor(2) *clearfor i=1 to 5 ?space(5-i) for j=1 to 2*i-1 ?* endforendfor7、编写一个程序产生一个有20项的Fibonacci数列并输出。注:Fibonacci数列的前两项为1,从第三项开始每一项是其前两项只和。cleara=1b=1?a,bfor i=1 to 18 c=a+b a=b b=c ?cendfor8、九九乘法表clearfor i=1 to 9 for j=1 to i ?alltrim(str(i)+*+alltrim(str(j)+=+alltrim(str(i*j)+space(3)
5、 endfor ?Endfor9、显示1100之间的所有素数,并求它们的和。clears=0?1到100之间的素数为:for i=2 to 100 x=0 for j=2 to i-1 if i/j=int(i/j) x=1 endif endfor if x=0 ?alltrim(str(i)+ s=s+i endif endfor?它们的和是:,s10、求100到999之间的水仙花数。clear?100-999之间的水仙花数有:for i=100 to 999 k=int(i/100) m=(int(i/10)%10 n=i%10 if k3+m3+n3=i ?alltrim(str(i)
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- VF 常见 20 编程 16
限制150内