PSA皱胶OK。
下列 ()是创建一个标识有“OK”的按钮的语句。A.TextField b=new TextField(“OK”);B.Button b=new Button(“OK”);C.TextArea b=new TextArea(“OK”);D.Checkbox b=new Checkbox(“OK”);
点击查看答案
以下程序:main(){charc;inti;for(i=65;i68;i++){c=i+32;switch(c){case‘a’:printf(“%c,“,c);break;case‘b’:case‘e’:printf(“ok,“);default:printf(“end“);}}}的输出结果为()A、a,ok,endB、a,ok,endendC、a,ok,end,endD、a,ok,ok
程序 include void main() { char str[][10]={ ”ok!”,“pen”,”book”,”desk”}; int i; for(i=1;iA.ok! penB.pen bookC.ok! pen bookD.ok! pen book desk
老年塑皱的化妆一般使用( )。A.酒精胶B.液体乳胶C.硅胶D.橡胶
如果A为整数且,|A|>=10,则打印“OK”,否则打印“Error”,表示这个条件的单行格式If语句是( )。A.If Int(A)=A And Sqr(A)>=10 Then Print"OK"Else Print "Error"B.If Fix(A)=a And Abs(A)>=-10 Then Print"OK"Else Print "Error"C.If Int(A)=A And(A>=10,A<-10) Then Print"OK"Else Print "Error"D.If Fix(A)=A And A>=10,And A<=-10 Then Print"OK" Else Print "Error"
以下程序的输出结果是main(){ int x=100,a=10,b=20,ok1=5,ok2=0; if(a<b)if(b!=15)if(!ok1)x=1; else if(ok2)x=10; else x=-1; printf("%d\n",x);}
执行语句:cout<<setfill('*')<<setw(10)<<setfill('#')<<left<<123<<"OK"<<endl;后将输出A.123*******OKB.123#######OKC.123********OK********D.123#######OK########