#include
#include
#include
#if _WIN32_WINNT < 0x0500
#undef _WIN32_WINNT
#define _WIN32_WINNT 0x0502
#endif
#include
using namespace std;
//////////////////////////////////////////////
int main()
{
SetConsoleOutputCP(1251);
SetConsoleCP(1251);
HWND hwnd = GetConsoleWindow();
HDC hDC = GetDC(hwnd);
SetConsoleTitle("Графика консоли");
int SFTx=150; int SFTy=150; int n=5;
for (int r= 0; r< 3; r++)
{
for (int c=0; c<2; c++)
{
if (n--)
Rectangle(hDC, 50+SFTx*r, 50+SFTy*c, 100+SFTx*r, 100+SFTy*c);
else break;
}
}
cin.ignore();
ReleaseDC(hwnd, hDC);
return 0;
}
вот консоль с этим кодом: