-27的立方根是______;18的算术平方根是______.
∵(-3)3=-27,
∴-27的立方根是:-3;
18的算术平方根是18=32.
故答案是:-3;32.
在下面程序的画线处填上适当的内容,使程序执行后的输出结果为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( ); }
用酒精灯加热纸杯里的水,水沸腾后纸杯依然没有燃烧,其原因是[ ]
A.纸杯不能燃烧
B.纸杯没有与空气接触
C.纸杯装水后着火点降低
D.温度没有达到纸杯着火点