標題:
C++ 字串輸入 (包含空白)
[打印本頁]
作者:
tonyh
時間:
2022-10-22 16:10
標題:
C++ 字串輸入 (包含空白)
本帖最後由 tonyh 於 2022-12-8 19:44 編輯
#include<bits/stdc++.h>
using namespace std;
string str;
int main()
{
cin.tie(0);
cin.sync_with_stdio(0);
getline(cin, str);
cout<<str<<endl;
cout<<str.size()<<endl;
cout<<str[1]<<endl;
cout<<str[3]<<endl;
return 0;
}
複製代碼
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入一字串(包含空白): ";
getline(cin,str);
cout<<"您剛輸入的字串是: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃宇綸
時間:
2022-12-8 19:46
#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define int ll
#define FOR(i,a,b) for(int i=a;i<b;i++)
#define REP(i,n) FOR(i,0,n)
#define REP1(i,n) FOR(i,1,(n)+1)
#define RREP(i,n) for(int i=(n)-1;i>=0;i--)
#define f first
#define s second
#define pb push_back
#define ALL(x) x.begin(),x.end()
#define SZ(x) (int)(x.size())
#define SQ(x) (x)*(x)
#define pii pair<int,int>
#define Graph vector<vector<int>>
#define IOS() cin.sync_with_stdio(0),cin.tie(0),cout.tie(0)
const ll inf=(1ll<<63)-1;
const int maxn=1e4+5;
const ll mod=1e9+7;
string s;
signed main()
{
IOS();
getline(cin,s);
cout<<s<<"\n";
return 0;
}
複製代碼
作者:
黃宥華
時間:
2022-12-8 19:47
#include<bits/stdc++.h>
using namespace std;
int main()
{
cin.tie(0);
cin.sync_with_stdio(0);
string str;
getline(cin,str);
cout<<"剛剛輸入的字串是"<<str<<endl;
cout<<str.size()<<" "<<str[1]<<" "<<str[3];
return 0;
}
複製代碼
作者:
李沛昂
時間:
2022-12-8 19:48
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入一字串(包含空白): ";
getline(cin,str);
cout<<"剛輸入的字串是: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃宇瑄
時間:
2022-12-8 19:51
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入一字串(包含空白): ";
getline(cin,str);
cout<<"剛輸入的字串是: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2