【简答题】下面程序的输出结果是【 】。 include <iostream> using namespace std; class A { int a, b; public: A() { a = b = 0; } A(int aa, int bb ) : a(aA) , b(bB) { cout <<'a='<<a<<','<<'b='<<b<<','; } ~A() { cout<<'D'; }; int...
【判断题】只有性格内向的人才容易患上心理疾病,成功的人不容易患上心理疾病。
【简答题】下面程序的输出结果是【 】。 inclde<iostreamn> include<math> using namespace std; class point { private: double x; double y; public: point(double a,double b) { x=a; y=b; } friend double distance(point a,point b); }...
【单选题】下面程序的输出结果是( )。#include <iostream>using namespace std;void main(){int s;for(int k=2;k<6;k+=2)s=1;for(int j=k; j<6;j++) s+=j;cout<<s<<end1;
【单选题】下面程序的输出结果是( )。 #include<iostream> using namespace std; void main() { int a=18; int * p=&a; cout<<* p;}
【单选题】下面程序的输出结果是( )。 #include <iostream> using namespace std; class point { public: point(int px=10,int py=10){ x=px;y=py;} getpx( ) { return x;} getpy( ) { return y;} private: int x,y; }; void main(voiD) {...
A.
p点的坐标是:10,10 q点的坐标是:15,15
B.
p点的坐标是:0,0 q点的坐标是:15,15
D.
p点的坐标是:10,10 q点的坐标是:10,10
【简答题】下面程序的输出结果是【 】。 include 〈iostream〉 using namespace std; void f(int x) { if(x) { cout.put('0'+x%10); f(x/10); } } int main() { f(11001); return 0; }