2010計(jì)算機(jī)等考二級(jí)C:50套上機(jī)程序填空題(6)

字號(hào):

2010計(jì)算機(jī)等考二級(jí)C:50套上機(jī)程序填空題(6)

    11、給定程序中,函數(shù)fun的功能是:將形參n中,各位上為偶數(shù)的數(shù)取出,并按原來從高位到低位相反的順序組成一個(gè)新的數(shù),并作為函數(shù)值返回。
    例如,輸入一個(gè)整數(shù):27638496,函數(shù)返回值為:64862。
    請(qǐng)?jiān)诔绦虻南聞澗€處填入正確的內(nèi)容并把下劃線刪除, 使程序得出正確的結(jié)果。
    注意:源程序存放在考生文件夾下的BLANK1.C中。
    不得增行或刪行,也不得更改程序的結(jié)構(gòu)!
    #include
    unsigned long fun(unsigned long n)
    { unsigned long x=0; int t;
    while(n)
    { t=n%10;
    /**********found**********/
    if(t%2==__1__)
    /**********found**********/
    x=__2__+t;
    /**********found**********/
    n=__3__;
    }
    return x;
    }
    main()
    { unsigned long n=-1;
    while(n>99999999||n<0)
    { printf("Please input(0
    printf("\nThe result is: %ld\n",fun(n));
    }
    12、給定程序中,函數(shù)fun的功能是:有N×N矩陣,以主對(duì)角線為對(duì)稱線,對(duì)稱元素相加并將結(jié)果存放在左下三角元素中,右上三角元素置為0。例如,若N=3,有下列矩陣:
    1 2 3
    4 5 6
    7 8 9計(jì)算結(jié)果為
    1 0 0
    6 5 0
    10 14 9
    請(qǐng)?jiān)诔绦虻南聞澗€處填入正確的內(nèi)容并把下劃線刪除,使程序得出正確的結(jié)果。
    注意:源程序存放在考生文件夾下的BLANK1.C中。
    不得增行或刪行,也不得更改程序的結(jié)構(gòu)!
    #include
    #define N 4
    /**********found**********/
    void fun(int (*t)___1___ )
    { int i, j;
    for(i=1; i
    { for(j=0; j
    {
    /**********found**********/
    ___2___ =t[i][j]+t[j][i];
    /**********found**********/
    ___3___ =0;
    }
    }
    }
    main()
    { int t[][N]={21,12,13,24,25,16,47,38,29,11,32,54,42,21,33,10}, i, j;
    printf("\nThe original array:\n");
    for(i=0; i
    { for(j=0; j
    }
    fun(t);
    printf("\nThe result is:\n");
    for(i=0; i
    { for(j=0; j
    }
    }