下面程序的输出结果是( )。 #include <iostream> using namespace std; int fun (int, int); //fun ( ) 函数的说明 void mai

admin2009-01-15  51

问题 下面程序的输出结果是(    )。    #include <iostream>    using namespace std;    int fun (int, int);              //fun ( ) 函数的说明    void main( )    {        int a =48,b =36,c;        c = fun(a,B) ;        cout<<c; } int fun(int u,int v) {        int w;    while (v)        {w=u%v;u =v;v =w;}        return u;    }

选项 A、24
B、12
C、48
D、36

答案2

解析 注意运算符%的特点。
转载请注明原文地址:https://kaotiyun.com/show/3ykp777K
0

相关试题推荐
随机试题
最新回复(0)