Skip to content

Instantly share code, notes, and snippets.

View iratimoshchenko's full-sized avatar

iratimoshchenko

View GitHub Profile
#include <iostream>
#include <vector>
using namespace std;
int main() {
int size;
cout << "Введіть розмір масиву: ";
cin >> size;
vector<int> arr;
#include <iostream>
#include <string>
using namespace std;
struct Country {
string name;
string capital;
long long population;
double area;
};