
作業社區
探索學習新天地,共享知識資源!
0份
提交作業
0個
布置作業
0份
滿分作業
學習任務
學習任務
學習任務
項目作業
討論題
討論題
學習任務
學習任務
討論題
學習任務
學習任務
幕布斯3194744 的學生作業:
#include using namespace std; void my_swap(int &a,int &b) { int temp; temp = a; a = b; b = temp; return ; } void my_swap(float &fa,float &fb) { float temp; temp = fa; fa = fb; fb = temp; return ; } void my_swap(string &stra,string &strb) { string temp; temp = stra; stra = strb; strb = temp; return ; } int main(int argc, const char *argv[]) { int a = 10,b = 20; my_swap(a,b); cout





來源:物聯網/嵌入式工程師 · 函數增強部分-課后任務