问题标题: 修改屏幕大小

0
0
已解决
李承耀
李承耀
新手光能
新手光能
#include<windows.h>
#include<bits/stdc++.h>
using namespace std;
int main(){
    SetConsoleTitle("mode con");
    int m,n;
    cin>>m>>n;
    char s[1024];
    sprintf(s,"mode con cols=%d lines=%d",m,n);
    system(s);
    return 0;
}

输入两个数,就能改了!


0
已采纳
高舒豪
高舒豪
中级光能
中级光能

错了×

这应该是更改DOS窗口的大小

麻烦改一下

0
0
0
0
我要回答