【程序说明】程序功能是求30!。【程序】SET TALK OFFCLEARN=1I=1DO WHILE (1)(2)N=N+1(3)? ISET TALK ON(1)A.N<>30B.N>30C.N<30D.N<=30

【程序说明】程序功能是求30!。

【程序】

SET TALK OFF

CLEAR

N=1

I=1

DO WHILE (1)

(2)

N=N+1

(3)

? I

SET TALK ON

(1)

A.N<>30

B.N>30

C.N<30

D.N<=30


相关考题:

有如下程序 public class Sun { public static void main(String args[ ]) { int x=0; int n=0; while(x50) { x=(x+2)*(x+3); n=n+1; } System.out.println(n+"和"+x); } } 上述程序的运行结果是( )。A.1和0B.2和72C.3和50D.4和168

以下程序计算1+1/3+1/5+…+1/(2N+1),直至1/(2N+1)小于0.00001,横线处应补充的程序是( )。 public class Sun{ public static void main(String args[]){ int n=1: double term,sum=1.0: do{ n=__; term=1.0/n; sum=sum+term; } while(term=0.00001); System.out.println(n); System.out.println(sum); } }A.2nB.2n+1C.2*nD.2*n+1

有如下程序 public class Sun { public static void main (String args[ ]) { int x=0; int n=0; while (x<50) { x=(x+2)*(x+3); n=n+1; System.out.println (n+"和"+x); 上述程序的运行结果是( )。A.1和0B.2和72C.3和50D.4和168

下列程序在输入m后,求满足条件“n! using 下列程序在输入m后,求满足条件“n!<=m<=(n+1)!”的值n,请将程序补充完整。include <iostream>using namespace std;int main(){int n,m, jc = 1;cin>>m;for(n=2;jc<=m;n++)jc = jc*n;cout<<"n="<<【 】<<end1;return 0;}

以下程序计算1+1/3+1/5+…+1/(2N+1),直至1/(2N+1)小于0.00001,横线处应补充的程序是( )。A.2nB.2n+1C.2*nD.2*n+1

以下程序拟实现计算s=1+2*2+3*3+…+n*n+…,直到slOOO);改为while(s=1000);B.把s=1;改为s=0;C.把n=1;改为n=0;D.把n=n+1;改为n=n$n;

下列给定程序中,函数fun()的功能是:根据以下公式求n的值,并作为函数值返回。例如,给指定精度的变量eps输入 0.0005时,应当输出Pi=3.140578。n/2=1+1/3+1/3*2/5+1/3*2/5*3/7+1/3*2/5*3/7*4/9……请改正程序中的错误,使它能得出正确的结果。注意:不要改动main函数,不得增行或删行,也不得更改程序的结构。试题程序:include <conio.h>include <stdio.h>include <math.h>double fun(double eps){double s,t; int n=t;s=0.0;/*************found**************/t=1;/*************found**************/while(t>eps){ s+=t;t=t*n/(2*n+1);n++;}/*************found**************/return (s);}main(){ double x;printf("\nPlease enter a precision: ");scanf("%1f",x);printf("\nPi=%1f\n ",fun(x));}

【程序说明】 程序功能是用两种循环步长值来求1+2+3+…+50的值。【程序一】S=0FOR (5)(6)ENDFOR? SRETURN【程序二】S=0FOR (7)S=S+NENDFOR(8)RETURN(5)A.N=50 TO 1B.N=1 TO 50 STEP-1C.N=1 TO 50D.S=1 TO 50

下列程序段中是死循环的是()A.int n=1; while(!n) n++;B.int n=1; do{n--;} while(n);C.int n=1; do{ n+1; } while(n)D.for(n=5;n<1;) ;