Odpowiedź:
#include <iostream>
using namespace std;
int main()
{
int n;
cout << "Podaj liczbe" << endl;
cin >> n;
cout << "Kolejne liczby naturalne" << endl;
for (int i = 0; i < n * 2; i++)
{
if (i % 2 == 0)
{
cout << i + n + 2 << endl;
}
}
return 0;
}
Wyjaśnienie:
Chyba o to chodziło