用swap函数交换两个变量的值

    科技2023-11-18  96

    void swap(int *a,int *b){ int tmp=*a; *a=*b; *b=tmp; }
    Processed: 0.032, SQL: 9