@Петррр
6138 / 3438 / 338
Регистрация: 28.10.2010
Сообщений: 5,926
|
14.04.2011, 19:56
|
|
Как вариант еще:
C++ | 1
2
3
4
5
6
7
8
9
10
| #include <iostream>
#include <conio.h>
#include <windows.h>
int main()
{
MoveWindow(GetConsoleWindow(), 0, 0, WS_MAXIMIZE, WS_MAXIMIZE, TRUE);
_getch();
return 0;
} |
|
0
|