• 2022-06-06 问题

    以下程序段实现的输出是()。for(i=0;i<;=9;i++)s[i]=i;for(i=9;i>;=0;i--)printf("%2d",s[i]);[/i][/i] A: 9 7 5 3 1 B: 1 3 5 7 9 C: 9 8 7 6 5 4 3 2 1 0 D: 0 1 2 3 4 5 6 7 8 9

    以下程序段实现的输出是()。for(i=0;i<;=9;i++)s[i]=i;for(i=9;i>;=0;i--)printf("%2d",s[i]);[/i][/i] A: 9 7 5 3 1 B: 1 3 5 7 9 C: 9 8 7 6 5 4 3 2 1 0 D: 0 1 2 3 4 5 6 7 8 9

  • 2022-07-25 问题

    下面程序的功能是用do-while语句求1至1000之间满足"用5除余2;且用7除余3"的数,且一行只打印五个数。程序中问号处应填写的语句是()。 #include main(){ int i=1,j=0;Do{if(?) {printf("%4d",i); j=j+1; if(?) printf("\n"); } i=i+1; }while(i&lt;1000);} A: i/5==2&amp;&amp;i/7==3 j/5==0 B: i%5==2&amp;&amp;i%7==3 j%5==0 C: i/5==2andi/7==3 j/5==0 D: i%5==2andi%7==3 j%5==0

    下面程序的功能是用do-while语句求1至1000之间满足"用5除余2;且用7除余3"的数,且一行只打印五个数。程序中问号处应填写的语句是()。 #include main(){ int i=1,j=0;Do{if(?) {printf("%4d",i); j=j+1; if(?) printf("\n"); } i=i+1; }while(i&lt;1000);} A: i/5==2&amp;&amp;i/7==3 j/5==0 B: i%5==2&amp;&amp;i%7==3 j%5==0 C: i/5==2andi/7==3 j/5==0 D: i%5==2andi%7==3 j%5==0

  • 2022-07-25 问题

    运行以下程序输出的结果是:( )。for i in range(3,9):if i%2==0:continueprint(i,end=' ') A: 3 5 7 9 B: 3 5 7 C: 3 D: 3 4 5 6 7 8 9

    运行以下程序输出的结果是:( )。for i in range(3,9):if i%2==0:continueprint(i,end=' ') A: 3 5 7 9 B: 3 5 7 C: 3 D: 3 4 5 6 7 8 9

  • 2022-06-12 问题

    for (int i = 1; i <= 10; i++){ if (i % 5 != 0) continue; Console.WriteLine("{0}", i); }该段程序执行后输出_____。 A: 5 10 B: 1 2 3 4 6 7 8 9 C: 5 D: 1 2 3 4 5 6 7 8 9 10

    for (int i = 1; i <= 10; i++){ if (i % 5 != 0) continue; Console.WriteLine("{0}", i); }该段程序执行后输出_____。 A: 5 10 B: 1 2 3 4 6 7 8 9 C: 5 D: 1 2 3 4 5 6 7 8 9 10

  • 2022-10-29 问题

    阅读以下程序,输出结果是: w=&#91;&#93; for i in range(1,20): if (i%5==0) and (i%7!=0): w.append(str(i)) print (w)

    阅读以下程序,输出结果是: w=&#91;&#93; for i in range(1,20): if (i%5==0) and (i%7!=0): w.append(str(i)) print (w)

  • 2022-07-25 问题

    运行以下程序输出的结果是:( )。i=10while i>;=6:i=i-1if i%4==0:continueelse:print(i,end=' ') A: 10 9 8 7 6 B: 9 8 7 6 5 C: 10 9 7 6 D: 9 7 6 5

    运行以下程序输出的结果是:( )。i=10while i>;=6:i=i-1if i%4==0:continueelse:print(i,end=' ') A: 10 9 8 7 6 B: 9 8 7 6 5 C: 10 9 7 6 D: 9 7 6 5

  • 2022-06-12 问题

    Public Sub Proc(a%( )) Static i% Do a(i) = a(i) + a(i + 1) i = i + 1 Loop While i < 2 End Sub Private Sub Command1_Click( ) Dim m%, i%, x%(10) For i = 0 To 4: x(i) = i + 1:  Next i For i = 1 To 2: Call Proc(x):    Next i For i = 0 To 4: Print x(i);:    Next i End Sub A: 3 4 7 5 6 B: 3 5 7 4 5 C: 2 3 4 4 5 D: 4 5 6 7 8

    Public Sub Proc(a%( )) Static i% Do a(i) = a(i) + a(i + 1) i = i + 1 Loop While i < 2 End Sub Private Sub Command1_Click( ) Dim m%, i%, x%(10) For i = 0 To 4: x(i) = i + 1:  Next i For i = 1 To 2: Call Proc(x):    Next i For i = 0 To 4: Print x(i);:    Next i End Sub A: 3 4 7 5 6 B: 3 5 7 4 5 C: 2 3 4 4 5 D: 4 5 6 7 8

  • 2021-04-14 问题

    二维字符数组:将5个字符串从小到大排序后输出。请填空。 #include #include int main(void ) { int i; char color[ ][7]= {"red", "blue", "yellow", "green", "black"}; void fsort(char a[5][7], int n); fsort(color, 5); for(i = 0; i < 5; i++) printf("%s ", color[i]); return 0; } void fsort(char a[5][7], int n) { int i, j; char temp[7]; for(i = 1; i < n; i++) for(j = 0; j < ______; j++) if(strcmp(a[j], a[j+1]) > 0){ strcpy(temp,a[j]); ____________ ; strcpy(a[j+1],temp); } }

    二维字符数组:将5个字符串从小到大排序后输出。请填空。 #include #include int main(void ) { int i; char color[ ][7]= {"red", "blue", "yellow", "green", "black"}; void fsort(char a[5][7], int n); fsort(color, 5); for(i = 0; i < 5; i++) printf("%s ", color[i]); return 0; } void fsort(char a[5][7], int n) { int i, j; char temp[7]; for(i = 1; i < n; i++) for(j = 0; j < ______; j++) if(strcmp(a[j], a[j+1]) > 0){ strcpy(temp,a[j]); ____________ ; strcpy(a[j+1],temp); } }

  • 2022-05-27 问题

    以下程序段运行后的输出结果是()inti;for(i=1;i<=7;i++){if(i%2!=0)continue;printf("%d",i);} A: 2 4 6 B: 1 3 5 C: 1 3 5 7 D: 1 2 3 4 5 6 7

    以下程序段运行后的输出结果是()inti;for(i=1;i<=7;i++){if(i%2!=0)continue;printf("%d",i);} A: 2 4 6 B: 1 3 5 C: 1 3 5 7 D: 1 2 3 4 5 6 7

  • 2022-05-26 问题

    以下程序的输出结果是( )。Dim a%( ) = { 1, 2, 3, 4, 5, 6, 7 }, i%For i = 0 To a.GetUpperBound(0) a(i) = a(i) * a(i)NextMsgBox( a(i) ) A: 49 B: 0 C: 不确定 D: 程序出错

    以下程序的输出结果是( )。Dim a%( ) = { 1, 2, 3, 4, 5, 6, 7 }, i%For i = 0 To a.GetUpperBound(0) a(i) = a(i) * a(i)NextMsgBox( a(i) ) A: 49 B: 0 C: 不确定 D: 程序出错

  • 1 2 3 4 5 6 7 8 9 10