下にあるようなコードだと結果を受け取れないのですが、原因がわからないので教えていただきたいです。
c++
1#include <bits/stdc++.h> 2 3using namespace std; 4using ll = long long; 5using P = pair<ll, ll>; 6const ll dx[4] = {1, 0, -1, 0}, dy[4] = {0, 1, 0, -1}; 7const ll ll_inf = ll(1e9) * ll(1e9); 8#define rep(i, n) for (ll i = 0; i < (ll)(n); i++) 9 10int main() { 11 int h; 12 cin>>h; 13 vector<string> field(h); 14 15 rep(i,h){ 16 string s; 17 cin>>s; 18 field.push_back(s); 19 20 } 21 rep(i,h){ 22 cout<<field[i]<<endl; 23 } 24}
回答3件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/08/24 06:15