標題:
字串處理 (三) - 字串輸入 2
[打印本頁]
作者:
陳品肇
時間:
2019-6-15 12:11
標題:
字串處理 (三) - 字串輸入 2
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char str[50];
cout<<"輸入一字串: ";
cin.getline(str,50);
cout<<"你剛輸入的字串是: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
吳孟書
時間:
2019-6-15 14:16
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
char s[50];
cout<<"輸入一字串:";
cin.getline(s,50);
cout<<"你剛輸入的字串是:"<<s<<endl;
system("pause");
return 0;
}
複製代碼
作者:
田宇任
時間:
2019-6-15 14:16
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char bang[50];
cout<<"輸入字串;";
cin.getline(bang,50);
cout<<"你輸入的是:"<<bang<<endl;
system("pause");
return 0;
}
複製代碼
作者:
洪寬瀧
時間:
2019-6-15 14:16
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char jeb[50];
cout<<"輸入一字串"<<endl;
cin.getline(jeb,50);
cout<<"您剛輸入der字串是"<<jeb<<endl;
system("pause");
return 0;
}
複製代碼
作者:
吳孟修
時間:
2019-6-15 14:17
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char s[50];
cout<<"請輸入隨便一字串:";
cin.getline(s,50);
cout<<"您剛才輸入的字串是:"<<s<<endl;
system("pause");
return 0;
}
複製代碼
作者:
湯郡一
時間:
2019-6-15 14:18
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char str[50];
cout<<"輸入一字串: ";
cin.getline(str,50);
cout<<"你剛輸入的字串是: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
王瑞喻
時間:
2019-6-15 14:19
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char s[50];
cout<<"輸入一字串:";
cin.getline(s,50);
cout<<"你剛輸入的字串是"<<s<<endl;
system("pause");
return 0;
}
複製代碼
作者:
曲書辰
時間:
2019-6-15 14:21
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
char a[50];
cout<<"請輸入字串:";
getline(a, 50);
cout<<a<<endl;
cout<<"你剛輸入的字串是: "<<a<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2