未分类题以下程序的输出结果是 #include<iostream.h> void reverse(int a [ ] ,int n) {int i,t; for(i=0;i<n/2;i++) {t=a[i];a[i]=a[n-1-i];a[n-1-i]=t;} } void main( ) {int b[10]={1,2,3,4,5,6,7,8,9,10}A.22B.10C.34D.30
单项选择题Please indicate whether each of the following sentence is true or false in grammar. people should always pay for music and not download it illegally. Down loading illegally is bad for the music industry. In addition, musicians. A、正确 B、错误
未分类题下面程序的结果为 #include<iostream.h> int c; class A { private: int a; static int b; public: A( ) {a=0;c=0;} void seta( ){a++;} void setb( ){b++;}A.1 2 1B.1 2 2C.1 1 2D.2 2 2
判断题客户与企业在管理双方关系时,既考虑当前利益,更注重长远利益 正确 错误
未分类题有以下结构体说明和变量的定义,且指针p指向变量a,指针q指向变量b。则不能把结点b连接到结点a之后的语句是 struct node { char data; struct node*next; }a,b,*p=&a,*q=&b;D.(*p).next=q;