- 1
very inte
#include <iostream> using namespace std; int main() { int x=4; for (x=2; x<=14; x+=3) { cout << x << endl; } return 0; }
1 ответ
0
outputs 2; 5;8;11;14
#include <iostream> using namespace std; int main() { int x=4; for (x=2; x<=14; x+=3) { cout << x << endl; } return 0; }