How to i get cubic numbers into a program?
Ive tried ^3, but in this line:
x = creat^3;
y = lines*20;
z = x+y;
cout<<"Your zenii for this post is " << z << ".\a" << endl;
If i change the cout to call out x it calls it out as 0, when i input the creat i use 3, so it should cube it to 27, but it calls out 0, why is this? How can i fix it?