若有以下程序: #include <iostream> using namespace std; void sub(int x,int y, int *z) { *Z = y+x; } int main()

admin2009-01-15  26

问题 若有以下程序:    #include <iostream>    using namespace std;    void sub(int x,int y, int *z)    {       *Z = y+x;    }    int main()    {       int a,b,c;       sub(8,4,&a);       sub(6,a,&b);       sub(a,b,&c);       cout<<a<<","<<b<<","<<c<<endl;       return 0;    程序运行后的输出结果是(    )。

选项 A、12,18,30
B、-12,6,8
C、6,8,10
D、12,-18,16

答案1

解析
转载请注明原文地址:https://kaotiyun.com/show/Bgkp777K
0

随机试题
最新回复(0)