4、下面的程序是否能够正常执行,若不能,请解释原因;若能,请分析其执行结果。 from random import randint result = set() while True: result.add(randint(1,10)) if len(result)==20: break print(result)

4、下面的程序是否能够正常执行,若不能,请解释原因;若能,请分析其执行结果。 from random import randint result = set() while True: result.add(randint(1,10)) if len(result)==20: break print(result)


参考答案和解析
无法正确执行,因为该程序的功能是从[1,10]区间中选择20个不同的随机整数,而该区间并没有这么多整数,所以程序死循环。

相关考题:

考虑下面的代码片段。?phpdefine(‘STOP_AT’,1024);$result = array();/在此处填入代码/{$result[]=$idx;}print_r($result);标记处填入什么代码才能产生如下的数组输出?( )Array([0]=1[1]=2[2]=4[3] =8[4] =16[5] =32[6] =64[7] =128[8] =256[9] =512) A.foreach($result as $key =$val)B.while($idx=2) C.for($idx=1 D.$idxSTOP_AT E.$idx=2)F.for($idx*=2G.STOP_AT=$idxH.$idx=0)

假设已导入random标准库,那么表达式max([random.randint(1,10)foriinrange(10)])的值一定是10。此题为判断题(对,错)。

下面程序的运行结果是#includeint fun(int a[]. int n){int result=l:for(int i=1;iresult=result*a[i];return result;}void main(){int a[3]={3,4,5};cout}A.12;B.15;C.20;D.60

下面程序的运行结果是 include int fun(int a[ ] ,int n) { int result=1; for(in 下面程序的运行结果是#include<iostream.h>int fun(int a[ ] ,int n){int result=1;for(int i=1;i<n;i++)result=result * a[i] ;retum result;}void main( ){int a[3] ={3,4,5};coutA.12B.15C.20D.60

以下程序booleana=false;booleanb=true;ooleanc=(abintresult=c==false?1:2;执行完后,c与result的值是()。 A.c=false;result=1;B.c=true;result=2;C.c=true;result=1;D.c=false;result=2;

有如下程序: public class MethLoad { public static void main(String args[]) { MethLoad classObj = new MethLoad(); classObj.methtest(4); classObj.methtest(4.0); } void methtest(double D) { double sum = 2*d; System.out.println("The result is:"+sum); } void methtest(int n) { int sum = 4*n; System.out.println("The result is:"+sum); } } 程序的运行结果为( )。A.The result is:16 The result is:8.0B.The result is:8.0 The resuR is:16C.The result is:8 The result is:16.0D.The resuR is:16.0 The result is:8

下面程序的运行结果是()。includeintfun(inta[],int n){int result=1;for(int i=“i 下面程序的运行结果是( )。 #include<iostream.h> intfun(inta[],int n) { int result=1; for(int i=“i<n;i++) result’resultxa[i]; return result; } void main() { inta[3]={3,4,5}; cout<<fun(a,3)<<endl; }A.12B.15C.20D.60

下列程序段: int result; int a=17,b=6; result=(a%b>4)?a%b:a/bSystem.out.println(result); 的结果为 ( )A.0B.1C.2D.5

假定a=3,下列程序的运行结果是()。ineludeint fun(int n);void main(){cout 假定a=3,下列程序的运行结果是( )。 #inelude<iostream.h> int fun(int n); void main() { cout<<"Please input a number:"; int a,result=0; cin>>a; result=fun(a); tout<<result<<end1; } intfun(int n) { int p=1,result=0; for(int i=1;i<=n;i++) { p*=i; result+=p; } return result; )A.4B.8C.9D.20

boolean a=false;boolean b=true;boolean c=(ab)(!b);boolean result=(ab)(!b); boolean result=(ab)(!b); 执行完后,正确的结果是( )。A.c=false;result=falseB.c=true,result=trueC.c=true;result=falseD.c=false;result=true

下面程序段: boolean a=false; boolean b=true; boolean c=(a||b)(b); boolean result=(a|b)(b); 执行完后,正确的结果是A.c=false;result=falseB.c=true,result=trueC.c=true;result=falseD.c=false;result=true

窗体中有命令按钮Commandl和文本框Text1,事件过程如下: Function result (By x As Integer)As Boolean If x Mod 2=0 Then result=True else result=False End if End Function PrivateSub Commandl_Click( ) x=Val(InputBox(”请输入一个整数”)) If __________Then Text1=Str(x)”是偶数.” Else Text1=Str(x)”是奇数.” End If End Sub 运行程序,单击命令按钮,输入19,在Text1中会显示“19是奇数”。那么以上程序的空白处应填写( )。A.result(x)=“偶数”B.result(x)C.result(x)=“奇数”D.NOT result(x)

请补充main函数,该函数的功能是:从键盘输入只有两个整数参与运算的一个四则运算式,然后计算出它的值。注意数字全部为正整数。例如,输入308*28,结果为8624.000000。注意:部分源程序给出如下。请勿改动主函数main和其他函数中的任何内容,仅在 main函数的横线上填入所编写的若干表达式或语句。试题程序:include<stdio, h>main ( ){int a=0, b=0, flag=l, fg=l;float result;char *p, ch;char str[10];clrscr ();printf("\n Input a string \n");gets (str);p=str;while (*p){if (*p>='0' *p<='9' flag==l )a=【 】;elseif (fg){ch=*p;flag=2;fg=0;}if (*p>='0 ' *p<='9' flag==2)b=【 】;p++;}switch(【 】){case '+': result=a+b;break;case '-': result=a-b;break;case '*' :result=a*b;break;case '/' :result= (float) a/b;break;printf ("\nresult=%f", result);}

执行语句: int result=100; cout= 60)(result 执行语句:int result=100;cout<<(((result>= 60)(result<=100))?"good":"general");结果是【 】。

以下程序执行后输出的结果是【】。 include using namespace std; int fac(int a,int b){ 以下程序执行后输出的结果是【 】。include<iostream>using namespace std;int fac(int a,int b){return(b-a)*a;}int main(){int x=3,y=4,z=5,result;result=fac(fac(x,y),fac(x,z));cout<<result<<endl;return 0;}

下面程序段: boolean a=false; boolean b=true; boolean c=(aB) (!B) ; boolean result=(aB) (!B) ; 执行完后,正确的结果是( )。A.c=false;result=falseB.c=true,result=trueC.c=tree;result=falseD.c=false;result=trae

下列给定程序中函数fun()的功能是计算1/n!的值。例如:给n输入5,则输出0.0083330请改正程序中的错误,使它能得到正确结果。注意:不要改动main函数,不得增行或删行,也不得更改程序的结构。试题程序:include <stdio.h>include <conio.h>/******+****found*************/int fun(int n){double result=1.0;if(n==0)return 1.0;while(n>1 n<170)/**********found************/result *=n++;result=1/result;return result;}main(){int n;printf("Input N:");scanf("%d",n);printf("\n1/%d!=%If\n",n,fun(n));}

下面程序的运行结果是includeint fun(inta[],int n){ int result=1; for(int i=1:i 下面程序的运行结果是 #include<iostream.h> int fun(inta[],int n) { int result=1; for(int i=1:i<n;i++) result=result*a[i]; remm result; } void main() { int a[3]={3,4,5}; cout <<fun(a,3) <<end1; }A.12B.15C.20D.60

若有如下SQL语句 SELECT DISTINCT工资FROM教师; WHERE工资=(SELECT MAX(工资)FROM教师); INTO TABLE Result 执行该语句后,Result表中的记录个数是( )。A.1B.2C.3D.4

有如下程序: public class MethLoad { public static void main(String args[]) { MethLoad classObj=new MethLoad(); classObj.methtest(4); classObj.methtest(0); } void methtest(double d) { double sum=2*d; System.out.println("The result is:"+sum); } void methtest(int n) { int sum=4*n; System.out.println("The result is:" +sum); } }程序的运行结果为( )。A.The result is:16 The result is:0B.The result is:0 The result is:16C.The result is:8 The result is:0D.The result is:0 The result is:8

执行下面的一段C程序后,变量result的值应为(62)。(08年55)(09年49) char chr = 127; int result = 128; chr += 1; result += chr;A.OB.1C.128D.256

random.randint(20,20)的结果是()A、0B、20C、10D、任意值

以下代码的输出结果是() while(1) { $var++; $result=$var; if($result==17)break; $var--; } echo($result);A、0B、17C、18D、这是一个无限循环,没有输出

int i = 0;  while (true) { if(i==4) {  break;  }  ++i;  }  System.out.println(“i=”+i);  What is the result?()  A、 i = 0B、 i = 3C、 i = 4D、 i = 5E、 Compilation fails.

假设已导入random标准库,那么表达式max([random.randint(1,10)for i in range(10)])的值一定是10。

单选题int i = 0;  while (true) { if(i==4) {  break;  }  ++i;  }  System.out.println(“i=”+i);  What is the result?()A i = 0B i = 3C i = 4D i = 5E Compilation fails.

单选题以下代码的输出结果是() while(1) { $var++; $result=$var; if($result==17)break; $var--; } echo($result);A0B17C18D这是一个无限循环,没有输出

单选题random.randint(20,20)的结果是()A0B20C10D任意值