#include
#include
using namespace std;
void main()
{
setlocale(NULL, "russian");
const int r = 1;
cout << "R\tH\tV\n" << endl;<br> for(int h = 1; h <= 10; h++){<br> cout << r << "\t" << h << "\t" << (pow(r, 2))*(h/3) << endl; <br> }
system("pause");
};