標題:
字串處理 (三) - 字串輸入 2
[打印本頁]
作者:
tonyh
時間:
2014-7-12 16:43
標題:
字串處理 (三) - 字串輸入 2
本帖最後由 tonyh 於 2014-7-26 17:46 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char str[50];
cout<<"輸入一字串: ";
cin.getline(str,50);
cout<<"你剛輸入的字串是: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張峻瑋
時間:
2014-7-12 16:44
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
char str[50];
cout<<"輸入一字串: ";
cin.getline(str,50);
cout<<"你剛輸入的字串是: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李允軒
時間:
2014-7-12 16:44
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
char a[50];
cout << "請輸入一個字串:";
cin.getline(a,50);
cout << "你剛才輸入的字串是:" << a;
system("pause");
return 0;
}
複製代碼
作者:
張郁庭
時間:
2014-7-12 16:44
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
char str[50];
cout<<"請輸入一字串: ";
cin.getline(str,50);
cout<<"你輸入的字串是: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
周雍程
時間:
2014-7-12 16:45
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char str[50];
cout<<"輸入一個字串: ";
cin.getline(str,50);
cout<<"你輸入的是: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張彥承
時間:
2014-7-12 16:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main ()
{
char str[50];
cout<<"請輸入一字串: ";
cin. getline(str,50);
cout<<"你剛輸入的字串是: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林宇翔
時間:
2014-7-12 16:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char str[50];
cout<<"輸入一個字串: ";
cin.getline(str,50);
cout<<"你剛輸入的字串是啥呢~~~~ " << endl;
system("pause");
cout<<"你剛輸入的字串是:"<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
劉得旗
時間:
2014-8-7 15:34
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char str[100];
cout<<"輸入字串(100字內): ";
cin.getline(str,100);
cout<<"剛輸入的字串: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2