• 2022-06-17 问题

    以下步骤可以得到( )hello.c汇编程序文件 A: gcc –E –o hello.i hello.c B: gcc -S –o hello.s hello.i C: gcc –c –o hello.o hello.s D: gcc –o hello hello.o

    以下步骤可以得到( )hello.c汇编程序文件 A: gcc –E –o hello.i hello.c B: gcc -S –o hello.s hello.i C: gcc –c –o hello.o hello.s D: gcc –o hello hello.o

  • 2022-06-17 问题

    Linux下,hello.c生成hello可执行程序的过程中,gcc -S hello.cpp -o hello.s 是哪个过程()? A: 预处理 B: 编译 C: 汇编 D: 链接

    Linux下,hello.c生成hello可执行程序的过程中,gcc -S hello.cpp -o hello.s 是哪个过程()? A: 预处理 B: 编译 C: 汇编 D: 链接

  • 2022-06-05 问题

    ("%s"%"hello")的返回值是() A: hello B: %s C: %s% D: hello%

    ("%s"%"hello")的返回值是() A: hello B: %s C: %s% D: hello%

  • 2022-06-05 问题

    下面程序段的输出结果是_______。for s in "Hello, World!": if s==",": break print(s,end="") A: Hello, B: Hello,World! C: , D: Hello

    下面程序段的输出结果是_______。for s in "Hello, World!": if s==",": break print(s,end="") A: Hello, B: Hello,World! C: , D: Hello

  • 2022-06-05 问题

    以下要输出“hello,world!”正确的是? A: String s=String.format("%1s%2s","hello","world");System.out.println(s); B: String s=String.format("%1$s,%2$s","hello","world");System.out.println(s); C: String s=String.format("%s,%s","hello","world");System.out.println(s); D: String s=String.format("%1s,%2s","hello","world");System.out.println(s);

    以下要输出“hello,world!”正确的是? A: String s=String.format("%1s%2s","hello","world");System.out.println(s); B: String s=String.format("%1$s,%2$s","hello","world");System.out.println(s); C: String s=String.format("%s,%s","hello","world");System.out.println(s); D: String s=String.format("%1s,%2s","hello","world");System.out.println(s);

  • 2022-06-05 问题

    以下程序段的输出结果是 。Char s[ ]=”Hello World!”;Strlwr(s);Printf(“%s”,s); A: hello world! B: HELLO world! C: hello WORLD! D: HELLO WORLD!

    以下程序段的输出结果是 。Char s[ ]=”Hello World!”;Strlwr(s);Printf(“%s”,s); A: hello world! B: HELLO world! C: hello WORLD! D: HELLO WORLD!

  • 2022-05-29 问题

    下列不能输出字符串"Hello"的程序段是______。 A: char *t; t="Hello";printf("%s\n",t); B: char *t, s[]="Hello"; t=s;printf("%s\n",t); C: char s[20],*t=s; t="Hello";printf("%s\n",s); D: char *t, s[]="Hello"; t=s;printf("%s\n",s);

    下列不能输出字符串"Hello"的程序段是______。 A: char *t; t="Hello";printf("%s\n",t); B: char *t, s[]="Hello"; t=s;printf("%s\n",t); C: char s[20],*t=s; t="Hello";printf("%s\n",s); D: char *t, s[]="Hello"; t=s;printf("%s\n",s);

  • 2022-06-05 问题

    下面代码的输出结果是()for s in “Hello World”:if s==”W”:contineprint(s,end=” “) A: Hello orld B: Hello C: World D: HelloWorld

    下面代码的输出结果是()for s in “Hello World”:if s==”W”:contineprint(s,end=” “) A: Hello orld B: Hello C: World D: HelloWorld

  • 2022-06-11 问题

    for s in "hello world": A: hello world B: world C: hello D: helloworld

    for s in "hello world": A: hello world B: world C: hello D: helloworld

  • 2022-07-25 问题

    执行以下程序,结果为:s='hello!'for i in s: print(i, end=" , ") A: hello! B: hello! C: he D: hel

    执行以下程序,结果为:s='hello!'for i in s: print(i, end=" , ") A: hello! B: hello! C: he D: hel

  • 1 2 3 4 5 6 7 8 9 10