• 2022-06-05
    初次见面,应用英语语句()打招呼。
    A: Howdoyoudo?\n
    B: It’snicetomeetyou.\n
    C: Whatareyou?\n
    D: I’mverywell,thankyou.
  • A

    内容

    • 0

      下列不构成无限循环的语句或语句组是()。 A: n=0; B: do ++n; while (n<=0); C: n=0; D: while (1) n++; E: n=10; F: While (n); n--; G: for(n=0, i=1; ;i++)n+=i

    • 1

      【单选题】若如下不构成无限循环的语句或语句组是(). A:n=0; do{++n;}while(n<=0); B:n=0; while(1) {n++;} C:n=10; while(n);{n--;} D:for(n=0,i=1; ;i++) n+=i; A. n=0; do{++n;}while(n<=0); B. n=0; while(1) {n++;} C. n=10; while(n);{n--;} D. for(n=0,i=1;                ;i++) n+=i;

    • 2

      一下不构成无限循环的语句或语句组是()。 A: n=0;do{n++;}while(n<=0); B: n=0;while(1){n++;} C: n=10;while(n);{n--;} D: for(n=0,i=1;;i++)n+=i;

    • 3

      以下不构成无限循环的语句或者语句组是()。 A: A、n=0; B: B、n=0; C: do++n;while(n<=0); D: while(1)n++ E: C、n=10; F: D、for(n=0,i=1;;i++)n+=i; G: while(n);n--;)

    • 4

      以下不构成无限循环的语句组是( )。 A: int n=0do{++n;} while (n<=0); B: int n=0; while (1)n++; C: int n=10; while (n); n--; D: int n=0,i;for (n=0,i=1; ;i++)n+=i;