• 2022-06-08 问题

    class ABC int a; public: ABC(int aa)a(aa) ;

    class ABC int a; public: ABC(int aa)a(aa) ;

  • 2022-06-17 问题

    以下正确的函数原型声明(自定义函数首部)是( ). A: double abc(int x;int y) B: double abc(int x,y); C: double abc(int x,int y) D: double abc(int x,int y);

    以下正确的函数原型声明(自定义函数首部)是( ). A: double abc(int x;int y) B: double abc(int x,y); C: double abc(int x,int y) D: double abc(int x,int y);

  • 2022-06-05 问题

    函数f()定义如下,该函数返回值的数据类型是______。 struct ABC int a;int b;int c;; struct ABC *f(struct ABC abc[2]) return (abc);

    函数f()定义如下,该函数返回值的数据类型是______。 struct ABC int a;int b;int c;; struct ABC *f(struct ABC abc[2]) return (abc);

  • 2022-06-09 问题

    ​以下结构体说明和变量定义中,正确的是( )‌ A: typedef struct abc{ int n;double m; }ABC;ABC x,y; B: struct abc{ int n;double m };struct abc x, y; C: struct ABC{ int n;double m; }struct ABC x, y; D: struct abc{ int n;double m; };abc x, y;

    ​以下结构体说明和变量定义中,正确的是( )‌ A: typedef struct abc{ int n;double m; }ABC;ABC x,y; B: struct abc{ int n;double m };struct abc x, y; C: struct ABC{ int n;double m; }struct ABC x, y; D: struct abc{ int n;double m; };abc x, y;

  • 2022-06-08 问题

    以下结构体说明和变量定义中,正确的是( )。 A: struct abc{ int n;double m );struct abc x, y; B: struct ABC{ int n;double m; }struct ABC x, y; C: typedef struct abc{ int n;double m; }ABC;ABC x,y; D: D) struct abc{ int n;double m; };abc x,y;

    以下结构体说明和变量定义中,正确的是( )。 A: struct abc{ int n;double m );struct abc x, y; B: struct ABC{ int n;double m; }struct ABC x, y; C: typedef struct abc{ int n;double m; }ABC;ABC x,y; D: D) struct abc{ int n;double m; };abc x,y;

  • 2021-04-14 问题

    有以下程序 #include "stdio.h" int abc(int u,int v); main ( ) { int a=24,b=16,c; c=abc(a,b); printf("%d\n",c); } int abc(int u,int v) { int w; while(v) { w=u%v; u=v; v=w; } return u; }

    有以下程序 #include "stdio.h" int abc(int u,int v); main ( ) { int a=24,b=16,c; c=abc(a,b); printf("%d\n",c); } int abc(int u,int v) { int w; while(v) { w=u%v; u=v; v=w; } return u; }

  • 2022-07-29 问题

    在下列选项中,有正确的程序是( )。 A: B: include <stdio.h>; C: define ABC 345int main( ){int a1;a1=ABC;return 0;} D: E: include <stdio.h> F: define ABC 345;int main( ){int a1;a1=ABC;return 0;} G: H: include <stdio.h> I: define ABC 345int main( ){int a1;a1=ABC;return 0;} J: K: include <stdio.h> L: define ABC 345int main( ){a1=ABC;int a1;return 0;}

    在下列选项中,有正确的程序是( )。 A: B: include <stdio.h>; C: define ABC 345int main( ){int a1;a1=ABC;return 0;} D: E: include <stdio.h> F: define ABC 345;int main( ){int a1;a1=ABC;return 0;} G: H: include <stdio.h> I: define ABC 345int main( ){int a1;a1=ABC;return 0;} J: K: include <stdio.h> L: define ABC 345int main( ){a1=ABC;int a1;return 0;}

  • 2022-06-05 问题

    已知函数abc的定义如下: void abc(int a&#91;&#93;, int b) { int c; for(c=0;c<b;c++) a&#91;c&#93;+=b; } 若main函数中有声明int x&#91;5&#93;={5}及调用abc函数的语句,则正确的调用abc函数的形式是( )。 A: abc(x[ ],x[0]); B: abc(x[0],x[0]); C: abc(&x[0],x[0]); D: abc(x[0],&x[0]);

    已知函数abc的定义如下: void abc(int a&#91;&#93;, int b) { int c; for(c=0;c<b;c++) a&#91;c&#93;+=b; } 若main函数中有声明int x&#91;5&#93;={5}及调用abc函数的语句,则正确的调用abc函数的形式是( )。 A: abc(x[ ],x[0]); B: abc(x[0],x[0]); C: abc(&x[0],x[0]); D: abc(x[0],&x[0]);

  • 2022-06-19 问题

    以下定义变量的语句正确的是() A: vala=10 B: vara=20 C: vari:Int="abc" D: vali:Int="abc"

    以下定义变量的语句正确的是() A: vala=10 B: vara=20 C: vari:Int="abc" D: vali:Int="abc"

  • 2022-06-12 问题

    表达式 isinstance('abc', int) 的值为_______________。

    表达式 isinstance('abc', int) 的值为_______________。

  • 1 2 3 4 5 6 7 8 9 10