#include
#include
#include
#include
#include
#include
using namespace std;
class Tojjle
{
public:
Tojjle(int lim)
{
l= lim; x=0;
};
void work()
{
x=0; int w=0;
while (x<=l)
{
w= pow(x,3);
A.push_back(w);
cout << x << '\t';
(x==w) ? x++: x= w;
}
cout << endl;
};
void PrintWork()
{
int w=0;
cout << "x";
while (w {
cout << setw(5) << w;
w++;
}
cout << endl;
cout << "A"; w=0;
while (w {
cout << setw(5) << A[w];
w++;
}
cout << endl;
};
~Tojjle() {};
protected:
int x;
int l;
vector A;
private:
};
int main(int argc, char **argv)
{
system("chcp 1251 > nul"); // Руссификация сообщений
setlocale(LC_ALL, "Russian");
Tojjle t(64); t.work(); t.PrintWork();
cout << endl << "Хелло Ворлд" << endl;
system("pause"); // system("pause > nul");
return 0;
}
насколько я понял ваше задание