標題:
抓取空白分隔的數字(未知數目)
[打印本頁]
作者:
tonyh
時間:
2022-12-8 20:42
標題:
抓取空白分隔的數字(未知數目)
範例輸入:
2 6 0 8 14 0 0 0 10 0 4 0 0
範例輸出:
2 6 0 8 14 0 0 0 10 0 4 0 0
#include<bits/stdc++.h>
using namespace std;
string raw;
int n;
stringstream ss;
vector<int> data;
int main()
{
cin.tie(0);
cin.sync_with_stdio(0);
getline(cin, raw);
ss<<raw;
while(ss>>n)
data.push_back(n);
for(int i: data)
cout<<i<<" ";
cout<<endl;
return 0;
}
/*
2 6 0 8 14 0 0 0 10 0 4 0 0
*/
複製代碼
以下為錯誤方式:
#include<bits/stdc++.h>
using namespace std;
int n;
int main()
{
cin.tie(0);
cin.sync_with_stdio(0);
while(cin>>n){
if(n==-1)
break;
cout<<n<<" ";
}
return 0;
}
/*
2 6 0 8 14 0 0 0 10 0 4 0 0
*/
複製代碼
作者:
黃宇綸
時間:
2022-12-8 20: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;
int n,x;
signed main()
{
IOS();
while(cin>>x) {
//if(x==-1) break;
cout<<x<<" ";
}
return 0;
}
複製代碼
作者:
李沛昂
時間:
2022-12-8 21:10
#include<bits/stdc++.h>
using namespace std;
string raw;
int n;
stringstream ss;
vector<int> data;
int main()
{
cin.tie(0);
cin.sync_with_stdio(0);
getline(cin, raw);
ss<<raw;
while(ss>>n)
data.push_back(n);
for(int i: data)
cout<<i<<" ";
cout<<endl;
return 0;
}
複製代碼
作者:
黃宥華
時間:
2022-12-8 21:11
#include<bits/stdc++.h>
using namespace std;
stringstream ss;
string raw;
int n;
vector<int> data;
int main()
{
cin.tie(0);
cin.sync_with_stdio(0);
getline(cin, raw);
ss<<raw;
while(ss>>n)
data.push_back(n);
for(int i: data)
cout<<i<<" ";
return 0;
}
複製代碼
作者:
黃宇瑄
時間:
2022-12-15 19:13
#include<bits/stdc++.h>
using namespace std;
string raw;
int n;
stringstream ss;
vector<int> data;
int main()
{
cin.tie(0);
cin.sync_with_stdio(0);
getline(cin, raw);
ss<<raw;
while(ss>>n)
data.push_back(n);
for(int i: data)
cout<<i<<" ";
cout<<endl;
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2