怎么用C语言编写一个在输入1,然后就结束某个进程的代码?

2025-06-27 01:25:40
推荐回答(1个)
回答1:

int n;
scanf("%d",&n);
if(n==1)
{
system("taskkill /im qq.exe -t -f");
}