반응형

system("mode con cols=가로 길이 lines=세로 길이 | title 제목명");

세로 길이가 가로 길이 보다 길다

1
2
3
4
5
6
7
8
9
#include <iostream>
using namespace std;
 
int main(void) {
   system("mode con cols=30 lines=30 | title 제목명"); // 콘솔창 크기 및 제목 설정
   //cols = 가로, lines = 세로 (가로가 세로보다 짧음)
   getchar();
   return 0;
}
cs

 

반응형

'C++' 카테고리의 다른 글

[C/C++] 콘솔 커서 숨기기  (0) 2020.03.25
[C/C++] 콘솔 커서 위치 이동하기  (0) 2020.03.25
[c++] int을 string으로 변환하기  (0) 2020.03.25
[c++] string을 int로 변환하기  (0) 2020.03.25
[C/C++] 음수 모듈러 연산  (1) 2020.02.28

+ Recent posts