結構體做爲函數參數(值傳遞,引用傳遞,指針傳遞)

1、值傳遞 #include <iostream> #include <string> using namespace std;html struct Student {     int id;     string name;     float score[2]; }; void OutCome(Student s) {     cout<<s.id<<','<<s.name<<','<<s.
相關文章
相關標籤/搜索