A: using namespace std;
B: using std::endl;
C: std::cout << "Hello";
D: using std::endl;std::cout << endl;
举一反三
- 以下代码写法哪个不符合工程规范? A: using namespace std; B: using std::endl; C: std::cout << "Hello"; D: using std::endl;,std::cout << endl;
- 中国大学MOOC:"如下程序的输出是什么____#include #include using namespace std;struct MyException : public exception{ const char * what () const throw () { return "C++ Exception"; }};int main(){ try { throw MyException(); } catch(MyException& e) { std::cout << "MyException" << std::endl; } catch(std::exception& e) { std::cout<<"exception" << std::endl; }}";
- 阅读下列程序,写出运行结果。 #include [iostream] using namespace std; int main() { int a = 1, b = 2; bool x, y; cout [< (a++)+(++b) << endl; cout << a % b << endl; x = !a]b; y = a-- && b; cout << x << endl; cout << y << endl; }
- 如想使用std命名空间,正确的程序语句是()。 A: using std; B: namespace std; C: using namespace; D: using namespace std;
- 以下程序的输出结果是 。 #include<iostream> using namespace std; int main() { int num = 50; int& ref = num; ref = ref + 10; cout <<"num = "<<num<<endl; num = num + 40; cout <<"ref = "<<ref<<endl; return 0; }
内容
- 0
中国大学MOOC: 下面程序输出结果为:#include<iostream>using namespace std;#include<string.h>int main( ){ char st[20]="hello\0\t\\"; cout<<strlen(st); cout<<sizeof(st)<<endl; cout<<st; return 0;}
- 1
运行下列程序,第1行输出是____,第2行输出是____,第3行输出是____。 #include[iostream] using namespace std; class A{ int a; public: A( ){ a=0; cout<<a<<endl; } A(int t){ a=t; cout<<a<<endl; } A(A &t){ a=t.a+10; cout<<a<<endl; } }; int main(void) { A a1,a2=1,a3=a2; return 0; }
- 2
下列程序的运行结果是____。#include <;iostream>;using namespace std;union{int i;char x[2];}a;void main(){a.x[0] = 10; a.x[1] = 1;cout<;<;a.i<;<;endl;}
- 3
有如下程序: #include using namespace std; class Base { private: void fun1() { cout<
- 4
运行下列程序,第1行输出是____,第2行输出是____,第3行输出是____,第4行输出是____。 #include[iostream] using namespace std; class A{ int a; public: A( ){ a=1; cout<<a<<endl; } ~A(){ a--; cout<<a<<endl; } }; class B{ int b; A a1; public: B( ){ b=3; cout<<b<<endl; } ~B(){ b--; cout<<b<<endl; } }; int main( ) { B b; return 0; }