在下划线处填上缺少的部分。源程序如下:#include using namespace std;template T fun(T x) { _________________ y; y=x*x-T(5); return y; } void main() { float a=2; cout<
查看答案
如下函数的作用是以双倍行距输出文件:void double_space(ifstream& f, ofstream& t){ char c; while(______){ ______; if(c=='\n') t.put(c); }}下划线处应填入的内容是______。
下列程序运行结果为______。#includeusing namespace std;class S{public: ~S( ) { cout<<"S"<< "\t"; }};char fun0(){ S s1; throw( 'T'); return '0';}int main(){ try { cout<
写出程序运行结果。#include using namespace std;int a[10]= {1,2, 3, 4, 5, 6, 7, 8, 9, 10};int fun( int i);int main(){ int i ,s=0; for(i=0; i<=10; i++) { try { s=s+fun(i); } catch(int) { cout<< "数组下标越界!"<=10) throw i; return a[i];}
写出以下程序的运行结果:#include using namespace std;void f();class T{public:T(){cout<<"constrictor"<