网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)
若有程序段:doublex=- 5.9;inty;y=(int)x;执行该段程序后

A.x=- 5.9,y=-5

B.x=- 5.9,y=-6

C.x=-5,y=-5

D.x=-6,y=-6


参考答案

更多 “ 若有程序段:doublex=- 5.9;inty;y=(int)x;执行该段程序后 A.x=- 5.9,y=-5B.x=- 5.9,y=-6C.x=-5,y=-5D.x=-6,y=-6 ” 相关考题
考题 若有语句 double x=17;int y; ,当执行 y=(int)(x/5)%2; 之后 y 的值为 【 7 】 。

考题 执行以下程序段后,变量x=______,y______。int x=5;int y=0;y = --x * 3;

考题 若有一下程序段 int *ptr,x,y=11; ptr=x; *ptr=10; x=*ptr+y; 执行该程序段后,x的值是 ______。A.12B.11C.21D.编译出错

考题 以下程序执行后的输出结果是( )。include usingnamespacestd;void try(int,int,int,in 以下程序执行后的输出结果是( )。 #include <iostream> using namespace std; void try(int,int,int,int); int main ( ) { int x,y,z,r; x=1; y=2; try(x,y,z,r); cout<<r<<end1; return 0; } void try(int x,int y, int z,int r) { z = x+y; x = X*X; y = y*y; r = z+x+y; }A.18B.9C.10D.不确定

考题 以下程序执行后的输出结果是include using namespace std;void try(int,int,int,int) 以下程序执行后的输出结果是 #include <iostream> using namespace std; void try(int,int,int,int); int main () { int x,y,z,r; x =1 ; y = 2; try(x,y,z,r); cout<<r<<endl; return 0; } void try(int x,int y,int z,int r) { z = x+y; x = x*x; y = y*y; r = z+x+y; }A.18B.9C.10D.不确定

考题 以下程序执行后的输出结果是includeusing namcspace std;void try(int,int,int,int); 以下程序执行后的输出结果是 #include<iostream> using namcspace std; void try(int,int,int,int); int main() { int x,y,z,r; x=1; y=2; try(x,y,z,r); cout<<r<<end1; return 0; } void try(int x,int y, int z,int r) { z = x+y; x = x*x; y = y*y; r = z+x+y; }A.18B.9C.10D.不确定

考题 以下程序执行后的输出结果是()。includeusing namespace std;void try(int,int,int,in 以下程序执行后的输出结果是( )。 #include<iostream> using namespace std; void try(int,int,int,int); int main() { int x,y,z,r; x=1; y=2; try(x,y,z,r); cout<<r<<endl; return 0; } void try(int x,int y, int z,int r) { z = x+y; X = x*x; y = y*y; r = z+x+y; }A.18B.9C.10D.不确定

考题 若有以下程序段 double x=5.16894; printf("%fn", (int)(x*1000+0.5)/(double)1000 ); 则程序段的输出结果是()A.5.170000B.5.175000C.5.169000D.5.168000

考题 【填空题】若有语句double x=17;int y;,当执行y=(int)(x/5)%2;之后y的值为