返回列表 發帖
#include <iostream>
#include <string>
using namespace std;
int main()
{
    string word;
    cout<<"請輸入要顯示的文字"<<endl;
    cin>>word;
    cout<<"以下就是您所輸入的文字:"<<word<<endl;
    system("pause");
    return 0;
}
人平

TOP

返回列表