Odpowiedź:
#include <iostream>
using namespace std;
int main(int argc, char const *argv[])
{
cout << "Za pomoca petli for" << endl;
for (int i = 2; i <= 20; i++)
{
if (i % 2 == 0)
{
cout << i << endl;
}
}
cout << "Za pomoca petli while" << endl;
int i = 2;
while (i <= 20)
{
if (i % 2 == 0)
{
cout << i << endl;
}
i++;
}
cout << "Za pomoca petli do while" << endl;
int j = 2;
do
{
if (j % 2 == 0)
{
cout << j << endl;
}
j++;
} while (j <= 20);
return 0;
}
Wyjaśnienie:
Jak coś niejasne to pytaj :)