This commit is contained in:
2023-04-09 22:12:29 +08:00
commit fba75a8df0
48 changed files with 3413 additions and 0 deletions

22
run.cpp Normal file
View File

@@ -0,0 +1,22 @@
#include <iostream>
#include <filesystem>
using namespace std;
// 清屏
void CleanScreen(){
/*if(filesystem::exists("/")){
return;
}*/
system("clear");
}
int main(int argc, char* argv[]){
// 判断参数是否齐全
CleanScreen();
//
if(argc < 3) {
cout << "参数不齐!" << endl;
return 1;
}
cout << argc << endl;
return 0;
}