执行以下程序后,输出结果为 #include[stdio.h] void main() { int x; float y; y=3.6; x=(int)y+10; cout<<"x="<<x<<"y="<<y; } A: x=13,y=3.600000 B: x=13.5,y=3.60000 C: x=13,y=3 D: x=13,y=3.6
执行以下程序后,输出结果为 #include[stdio.h] void main() { int x; float y; y=3.6; x=(int)y+10; cout<<"x="<<x<<"y="<<y; } A: x=13,y=3.600000 B: x=13.5,y=3.60000 C: x=13,y=3 D: x=13,y=3.6
1