单项选择题
以下程序的执行结果是( )。#nclude <iostream.h>template <class T>T max(T x, T y) retum(x>yx:y);void main() cout<<max(2,5)<<", "<<max(3.5,2.8)<<end1;
单项选择题 有以下程序#include<iostream.h>int f(int n)if(n==1 )return 1;else return f(n-1 )+ 1;void main() int i,j=0;for(i=1 ;i<3;i++) j+=f(i);cout<<j<<end1;程序运行后的输出结果是( )。
单项选择题 数据库、数据库系统和数据库管理系统之间的关系是( )。
单项选择题 以下运算符中不能重载的运算符是( )。