1)#include < iostream >
2)#include < cmath >
3)using namespace std;
4)double max(double x,doubley)
5){
6)if(x>y)
7)return x;
8)else
9)return y;
10)}
11)int main()
12){
13)doublea,b,c;
14)cout <<" input two numbers:\n";
15)cin >> a >> b;
16)c=max(a,b);
17)cout <<" the squart of max imum="<< sqrt( c );
18)}
A.求變量c的絕對值
B.對變量c進(jìn)行平方
C.對變量c開平方
D.將變量c進(jìn)行類型轉(zhuǎn)換
您可能感興趣的試卷
你可能感興趣的試題
1)#include < iostream >
2)#include < cmath >
3)using namespace std;
4)double max(double x,doubley)
5){
6)if(x>y)
7)return x;
8)else
9)return y;
10)}
11)int main()
12){
13)doublea,b,c;
14)cout <<" input two numbers:\n";
15)cin >> a >> b;
16)c=max(a,b);
17)cout <<" the squart of max imum="<< sqrt( c );
18)}
A.8
B.8.0000000000000000
C.9
D.9.0000000000000000
1)#include < iostream >
2)#include < cmath >
3)using namespace std;
4)double max(double x,doubley)
5){
6)if(x>y)
7)return x;
8)else
9)return y;
10)}
11)int main()
12){
13)doublea,b,c;
14)cout <<" input two numbers:\n";
15)cin >> a >> b;
16)c=max(a,b);
17)cout <<" the squart of max imum="<< sqrt( c );
18)}
A.5
B.5.0000000000000000
C.隨機(jī)值
D.不存在
1)#include < iostream >
2)#include < cmath >
3)using namespace std;
4)double max(double x,doubley)
5){
6)if(x>y)
7)return x;
8)else
9)return y;
10)}
11)int main()
12){
13)doublea,b,c;
14)cout <<" input two numbers:\n";
15)cin >> a >> b;
16)c=max(a,b);
17)cout <<" the squart of max imum="<< sqrt( c );
18)}
A.8
B.8.0000000000000000
C.9
D.9.0000000000000000
1)#include < iostream >
2)#include < cmath >
3)using namespace std;
4)double max(double x,doubley)
5){
6)if(x>y)
7)return x;
8)else
9)return y;
10)}
11)int main()
12){
13)doublea,b,c;
14)cout <<" input two numbers:\n";
15)cin >> a >> b;
16)c=max(a,b);
17)cout <<" the squart of max imum="<< sqrt( c );
18)}
執(zhí)行第15行時,若輸入“8空格9回車”,則第4行中,y的值是:()
A.0
B.隨機(jī)值
C.9
D.9.0000000000000000
最新試題
內(nèi)聯(lián)函數(shù)的優(yōu)缺點(diǎn)?通常在什么情況下使用?
為什么子類對象可以給父類對象賦值,而父類對象不能給子類對象賦值?
請問交換機(jī)和路由器各自的實(shí)現(xiàn)原理是什么?分別在哪個層次上面實(shí)現(xiàn)的?
關(guān)于this指針使用說法正確的是()
實(shí)時操作系統(tǒng)定義是什么?
局部變量能否和全局變量重名?
指針類型的作用?子類指針與父類指針強(qiáng)制轉(zhuǎn)換時要注意什么?
類ClassB從ClassA派生,那么ClassA*a=newClassB(…);試問該表達(dá)是否合法?為什么?
一個函數(shù)功能不太復(fù)雜,但要求被頻繁調(diào)用,則應(yīng)把它定義為()
字符指針、浮點(diǎn)數(shù)指針、以及函數(shù)指針這三種類型的變量哪個占用的內(nèi)存最大?為什么?