网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

The meaning of Flag H is “I have a pilot on board”.()

  • A、H旗的意思是“我船上有引航员”。
  • B、H旗的意思是“我船需要引航员”。
  • C、字母H的意思是“我船已通过检疫”。
  • D、字母H的意思是“我船上有引航员”。

参考答案

更多 “The meaning of Flag H is “I have a pilot on board”.()A、H旗的意思是“我船上有引航员”。B、H旗的意思是“我船需要引航员”。C、字母H的意思是“我船已通过检疫”。D、字母H的意思是“我船上有引航员”。” 相关考题
考题 以下程序中函数 f 的功能是 : 当 flag 为 1 时 , 进行有由小到大排序 ; 当 flag 为 0 时 , 进行由大到小排序。void f(int b[],int n,int flag){ int i,j,t;for(i=0;in-1;i++)for (j=i+1;jn;j++)if(flag?b[i]b[j]:b[i]b[j]) { t=b[i];b[i]=b[j];b[j]=t; }}main( ){ int a[10]={5,4,3,2,1,6,7,8,9,10},i;f(a[2],5,0); f(a,5,1);for(i=0;i10;i++) printf("%d",a[i]);}程序运行后的输出结果是A)1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 , 10 ,B)3 , 4 , 5 , 6 , 7 , 2 , 1 , 8 , 9 , 10 ,C)5 , 4 , 3 , 2 , 1 , 6 , 7 , 8 , 9 , 10 ,D)10 , 9 , 8 , 7 , 6 , 5 , 4 , 3 , 2 , 1 ,

考题 I()looked for the meaning of words in the context. A、continuouslyB、always

考题 The Coast Guards reported ____________ a ship without hanging its national flag. A.to seeB.to have seenC.seeingD.seen

考题 以下程序中函数f的功能是:当flag为1时,进行由小到大排序;当flag为0时,进行由大到小排序。 void f(int b[],int n,int flag) { int i,j,t; for(i=0;i<n-1;i++) for(j=i+1;j<n;j++) if(flag?b[i]>b[j]:b[i]<b[j]){t=b[i];b[i]=b[j];b[j]=t;} } main() { int a[10]={5,4,3,2,1,6,7,8,9,10},i; f(a[2],5,0);f(a,5,1); for(i=0;i<10;i++)printf("%d,",a[i]); } 程序运行后的输出结果是A.1,2,3,4,5,6,7,8,9,10,B.3,4,5,6,7,2,1,8,9,10,C.5,4,3,2,1,6,7,8,9,10,D.10,9,8,7,6,5,4,3,2,1,

考题 以上程序段运行的结果是:______. Dim a(-1 To 5) As Boolean Dim flag As Boolean flag = False Dim i As Integer Dim j As Integer Do Until flag = True For i = -1 To 5 j=j+1 if a(i)= False Then a(i)= True Exit For End If If i = 5 Then flag = True End If Next Loop Print jA.20B.7C.35D.8

考题 (11)下列程序用于在带垂直滚动条的文本框Text1中输出3到100之间的全部素数。请填空。 Private Sub Command1_Click() Text1.Text="" For n=3 To 100 k=Int(Sqr(n)) i=2 Flag=0 Do While i= And Flag=0 If n Mod i=0 Then Flag=1 Else i=i+1 End If Loop If Then Text1.Text=Text1.TextStr(n)Chr(13)Chr(10) End If Next n End Sub

考题 What is the meaning of the word “ROGER” when used in radio communication?__________.A.Please repeat your messageB.Not readableC.CorrectD.I have received your transmission satisfactorily

考题 publicclassAlpha1{publicstaticvoidmain(String[]args){booleanflag;inti=0;do{flag=false;System.out.println(i++);flag=i10;continue;}while((flag)?true:false);}}Whatistheresult?() A.000000000B.0123456789C.Compilationfails.D.Thecoderunswithnooutput.E.Thecodeentersaninfiniteloop.F.Anexceptionisthrownatruntime.

考题 如果一个正整数从高位到低位上的数字依次递减,则称其为降序数(如:9632是降序数,而8516则不是降序数)。现编写如下程序,判断输入的正整数是否为降序数。 Private Sub Command1 Click( ) Dim n As Long Dim flag As Boolean n=InputBox("输入一个正整数") S=Trim(Str(n)) For i=2 To Len(s) If Mid(s,i-1,1)Mid(S,i,1)Then Exit For Next i If i=Len(S)Then flag=True Else flag=False If flag Then Print n;"是降序数" Else Print n;"不是降序数" End If End Sub 运行以上程序,发现有错误,需要对给flag变量赋值的If语句进行修改。以下正确的修改是( )。A.If i=Len(s)+1 Then flag=False Else flag=TrueB.If i=Len(s)+1 Then flag=True Else flag=FalseC.If i=Len(s)-1 Then flag=False Else flag=TrueD.If i=Len(s)-1 Then flag=True Else flag=False

考题 We shall hoist the ___ (H旗) as soon as a pilot comes on boardA.Fag “H”B.Flag “G”C.Flag “Q”D.Flag

考题 Take down ___ (G旗).A.Flag “H”B.Flag “G”C.Flag “Q”D.Flag

考题 有以下程序:include void sort(int L[],int n){ int j, k, flag, temp; flag=n-1; 有以下程序: #include <iostream.h> void sort(int L[],int n) { int j, k, flag, temp; flag=n-1; while (flag>O) { k=flag-1; flag=O; for (j=O; j<=k; j++) { if(L[j]>L[j+1]) {A.123B.3210C.2130D.1230

考题 请补充main函数,该函数的功能是:把1~100间的所有素数保存在数组aa中,然后输出这些素数并计算它们的和。注意:部分源程序给出如下。请勿改动主函数main和其他函数中的任何内容,仅在 main函数的横线上填入所编写的若干表达式或语句。试题程序:include<stdio.h>main(){int n, i, j, k, flag, sum;int aa [50];sum=O;k=O;clrscr ();for (i=2; i<100; i++){【 】;for (j=2; j<i&&flag; j++)if (i%j==O){【 】;}if (flag){sum+=i;【 】;}}printf("\n*** prime number ***\n");for (i=0; i<k; i++){if (i%10==0)printf ("\n");printf ("%4d", aa [i]);}printf ("\nsum=%d", sum);}

考题 以下程序段运行的结果是______。Dim a(-1 To 5) As BooleanDim flag As Booleanflag = FalseDim i As IntegerDim j As IntegerDo Until flag = True For i=-1 To 5 j=j+1 If a(i)= False Then a(i)= True Exit For End If If i = 5 Then flag = True End If NextLoopPrint jA.20B.7C.35D.8

考题 用“起泡法”对输入的10个字符排序后按从小到大的次序输出。#define N 10char str[N];main(){ int i,flag;for(flag=1;flag==1;){ scanf("%s",str);flag=0;printf("\n");}sort(___(4)___);for(i=0;iN;I++)printf("%c",str[i]);printf("\n");}sort(char str[N]){ int i,j;char t;for(j=1;jN;J++)for(i=0;(iN-J)(STR[I]!='\0');I++)if(str[i]str[i+1]){ t=str[i];____(5)____;____(6)____;}}

考题 Take down ()(G旗).A、Flag“H”B、Flag“G”C、Flag“Q”D、Flag

考题 If we have a pilot on board , we should take down () and hoist () .()A、flag H ; flag GB、flag G; flag HC、flag H ; flag QD、flag G; flag Q

考题 public class Alpha1 {  public static void main( String[] args ) {  boolean flag; int i=0;  do {  flag = false;  System.out.println( i++ );  flag = i  10;  continue;  } while ( (flag)? true:false );  }  }  What is the result?()  A、 000000000B、 0123456789C、 Compilation fails.D、 The code runs with no output.E、 The code enters an infinite loop.F、 An exception is thrown at runtime.

考题 H旗的意思是“我船上有引员”。()A、The meaning of Flag H is “I have a pilot on board”.B、You should stop your vessel instantly.C、The meaning of Flag H is “I require assistance.”D、The meaning of Flag H is “I have PSC on board”.

考题 Letter “H” means“()”.A、I have a pilot on boardB、I require a pilotC、I have stoppedD、My vessel is healthy

考题 G旗的意思是“我需要引航员”。()A、The meaning of Flag G is “I have a pilot on board”.B、The meaning of Flag G is “I require a pilot”.C、The meaning of Flag G is “I require assistance.”D、The meaning of Flag G is “I require PSC on board”.

考题 单选题Which of the following is true?A All nicknames have a positive meaning.B All negatives have a negative meaning.C Nicknames are endearing.D All nicknames can be either positive or negative.

考题 单选题If we have a pilot on board , we should take down () and hoist () .()A flag H ; flag GB flag G; flag HC flag H ; flag QD flag G; flag Q

考题 单选题Take down Flag “G” and()(升) Flag “H”.A raiseB lowerC riseD hoist

考题 单选题The meaning of Flag H is “I have a pilot on board”.()A H旗的意思是“我船上有引航员”。B H旗的意思是“我船需要引航员”。C 字母H的意思是“我船已通过检疫”。D 字母H的意思是“我船上有引航员”。

考题 单选题H旗的意思是“我船上有引员”。()A The meaning of Flag H is “I have a pilot on board”.B You should stop your vessel instantly.C The meaning of Flag H is “I require assistance.”D The meaning of Flag H is “I have PSC on board”.

考题 单选题G旗的意思是“我需要引航员”。()A The meaning of Flag G is “I have a pilot on board”.B The meaning of Flag G is “I require a pilot”.C The meaning of Flag G is “I require assistance.”D The meaning of Flag G is “I require PSC on board”.