• 2022-06-07
    要指定一个相对位置10,10的点,应该输入
    A: @10,10
    B:
    C: 10,10
    D: 10,10
    E: 10<10
  • A

    内容

    • 0

      若有变量定义语句“int m,n;",运行时输入__________,则m和n的值都是10。 A: 10 10 B: 10,10 C: m=10,n=10 D: m=10 n=10

    • 1

      下列数组定义中,正确的是 。 A: int a[][]=new int [10,10]; B: int a[10][10]; C: int a[][]=new int [10][10]; D: int a[][10];

    • 2

      functionconsoleLog(){console.log(i);vari=10;console.log(i);}consoleLog();console.log(i);以上代码的打印结果分别是() A: 10,10,undefined B: undefined,10,undefined C: undefined,10,程序报错 D: 10,10,程序报错

    • 3

      以下命令中正确的是()。 A: STORE 10 TO X,Y B: STORE 10,10<br/>TO X,Y C: X=10,Y=10 D: X=Y='10'

    • 4

      以下程序段的输出结果是()。int x=10, y=10;cout&lt;&lt;x--&lt;&lt;&quot;, &quot;&lt;&lt;--y&lt;&lt;endl;? 9,10|10,9|10,10|9,9