单项选择题
1)#include < iostream > 2)# include < math.h > 3)using namespace std; 4)double max(double x,doubley); 5)void main() 6){ 7)double a,b,c; 8)cout << " input two numbers:\n"; 9)cin>>a>>b; 10)c=max(a,b); 11)cout<< " the squart of max imum="<< sqrt(c); 12)} 13)double max(doublex,doubley) 14){ 15)if(x>y) 16)returnx; 17)else 18)returny; 19)}
若执行第9行时,输入89后按回车,则执行完第10行后,c的值是:()
A.8 B.8.0(小数位数由编译器决定) C.9 D.9.0(小数位数由编译器决定)
单项选择题 程序第7行中定义了几个变量:()
单项选择题 程序第11行中sqrt( c )在哪个头文件中定义:()
单项选择题 程序第11行中sqrt( c )的作用是:()