公益论内容中,要求首先着眼于群体的利益,着眼于绝大多数人利益的是()
A.群体公益
B.科学公益
C.后代公益
D.医疗群体公益
E.社会公益
参考答案:A
工程项目范围界定的依据包括( )。
A.业主需求文件
B.工作分解结构
C.项目约束条件和各种假设
D.项目其他阶段的成果
E.历史资料
有以下程序: #include <iostream> using namespace std; class myclass private:int a, b; public:void init( int i, int j ) a = i; b = j;friend int sum( myclass x ); ; int sum( myclass x ) return x.a + x.b; int main () myclass y;y.init( 15, 20 );cout<<sum( y )<<end1;return 0; 执行后的输出结果是( )。
A.15
B.20
C.5
D.35