Объяснение:
С++
#include <iostream>
using namespace std;
int main() {
for(int x = -3; x <= 7; x++) {
cout << x * x * x << ' ';
}
Объяснение:
С++
#include <iostream>
using namespace std;
int main() {
for(int x = -3; x <= 7; x++) {
cout << x * x * x << ' ';
}
}