( 10 )执行下列程序,显示的结果是 【 10 】 。
one= "WORK"
two = ""
a = LEN ( one )
i = a
DO WHILE i>=1
two = two + SUBSTR ( one ,i , 1 )
i=i - 1
ENDDO
? two
第1题:
编译和执行以下代码,输出结果是( )。 int i=1; switch (i) { case 0: System.out.print("zero,"); break; case 1: System.out.print("one,"); case 2: System.out.print("two,"); default: System.out.println("default"); }
A.one,
B.one,two,
C.one,two,default
D.default
第2题:
有以下程序:
程序运行后的输出结果是( )。
A.10,One*Dream!
B.9,One*Dream!
C.9,One*World
D.10,One*World
第3题:
【填空题】运行下列程序,输出结果是____。 #include <iostream> using namespace std; enum opt{ONE,TWO,THREE,FOUR,FIVE,SIX,SEVEN}op; int main(void) { cout<<ONE; cout<<TWO; cout<<SIX; return 0; }
第4题:
有以下程序
#include<stdio.h>
#include<string.h>
main( )
{char str[][20]={“Qne*World”,“one*Dream!”},*P=str[1 ].
prinff(“%d,”,strlen(p));printf(“%s\n”,P); ’
}
程序运行后的输出结果是
A.9,One*World S)9,One*Dream!
B.10,One*Dream!
C.10,One*World
第5题:
有以下程序:程序运行后的输出结果是( )。
A.9.One*World
B.9.One*Dream!
C.10.One*Dream!
D.10.One*World