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

    科技2023-11-18  95

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