关于关闭极域学生系统
暂无测试数据。
该比赛已结束,您无法在比赛模式下递交该题目。您可以点击“在题库中打开”以普通模式查看和递交本题。
点这个
https://jingyan.baidu.com/article/60ccbceb603a2c64cab19732.html
或
windows电脑:
1.按win+R键召唤运行
2.在运行上输入cmd
3.在cmd上输入taskkill /f /t /im StudentMain.exe
C++:
#include <bits/stdc++.h>
using namespace std;
int main()
{
while(1)
{
system("taskkill /f /t /im StudentMain.exe");
}
return 0;
}