《个人信用信息基础数据库管理暂行办法》自()实施。
A.2004年10月1日
B.2005年10月1日
C.2006年10月1日
D.2007年10月1日
参考答案:B
国际货币基金组织使用的“货币”与“准货币”,两者之和相当于各国通常采用的()。
A、M0
B、M1
C、M2
D、M3
在下面程序的画线处填上适当的内容,使程序执行后的输出结果为1/2005。 #include <iostream> using namespace std; class Date{ public: Date(int m=1,int y=0):month(m),year(y){} void Print( ){cout<<month<<"/"<<year<<endl;} (9) operator+(const Date&dl,const Date& d2); private: int month,year; }; (10) operator+(const Date& dl,const Date& d2){ int year,month; year=d1.year+d2.year; month=d1.month+d2.month; year+=(month-1)/12; month=(month-1)%12+1; return Date(month,year); } void main( ){ Date dl(3,2004),d2,d3(10); d2=d3+dl; d2.Print( ); }