用指向指針的方法對5個字符串排序並輸出

#include <iostream> #include <string> using namespace std; void select_sort(string *str,int n); int main() { string str[5]; string *p; char temp[100]; int i; p=str; cout<<"輸入5個字符串:"<<endl; for(i=0;i<5
相關文章
相關標籤/搜索