Problem

5/8

要素の削除 - 2

Problem

N 要素の配列が与えられます。  不均一な対称要素を削除します。

最初の行には、数値 N (1<=N<=15)  - 1 次元配列の要素数が含まれます
2 行目には N 個の整数が含まれます (数値はキーボードから入力されます)

サンプル入力と出力
<本体>
テスト番号 入力データ インプリント
1
5
1 0 2 0 0
0 2 0
2
6
4 0 1 4 5 4 
4 4
Write the program below
#include <iostream>
#include <vector>
using namespace std;
int main()
{
	int n;
	vector<int> myvector;    
       cin>>n;
       for(int i=0;i<n;i++)
         {
          int a;
          cin>>a;
         myvector.push_back(a);
         }
  
for (auto now : myvector) {
		cout << now << " ";
	}
}
      

     

Program check result

To check the solution of the problem, you need to register or log in!