#include<string> #include<iostream> using namespace std; void test1() { string s; const char* c = "CPP"; string s1(c); cout << s1 << endl; ...
確定! 回上一頁