Odpowiedź:
#include<iostream>
using namespace std;
int main()
{
int a,b;
int x = 0;
cout << "Podaj a: ";
cin >> a;
cout << "Podaj b: ";
cin >> b;
for(int i=1;x<b;i++)
{
x = a*i;
if(x<b)
{
cout << x << endl;
}
else
{
return 0;
}
}
}
Wyjaśnienie:
bo tak.