1.打开命令提示符(cmd)

如果打不开命令提示符,用下面的代码打开:

#include<bits/stdc++.h>
#include<windows.h>
using namespace std; 
int main(){
	system("start cmd");
  return 0;
}

2.输入下面三行指令:

color a

d:(也可以是其他盘)

dir /s

(一个扫盘命令)

if你不想太麻烦,就用这个(仅小屏有效果)

#include<bits/stdc++.h>
#include<windows.h>

using namespace std;

int main() {
    system("color a");
    bool isExit = false;
    for (int i = 0;; i++) {
        cout << "7 3 1 8 0 9 3 7 3 1 8 0 9 3 7 3 1 8 0 9 3 7 3 1 8 0 2 3 7 3 1 8 0 9 3 7 3 1 8 0 9 3 7 3 1 8 0 9 3 7 3 1 8 0 9 3 7 3 1 8 2 ";
        Sleep(20);
        if (GetAsyncKeyState(VK_ESCAPE)) {
            isExit = true;
            break;
        }
    }
    return 0;
}

也可以用这个:

#include<bits/stdc++.h>
#include<windows.h>
#include <cstdlib>
#include <ctime>

using namespace std;

int main() {
    system("color a");
    int u;
    cout << "请输入频数(0-10):";
	cin >> u;
	system("cls");
    srand(static_cast<unsigned int>(time(nullptr)));
    for (int i = 0;; i++) {
        int randomNum = rand() % 10;
        if(randomNum>=10-u) cout << char(64);
        else cout << ' ';
        Sleep(0);
    }
    return 0;
}

0 comments

No comments so far...