摘要:
#include <stdio.h> main() { int x=10,y=20,t=0; if(x==y) t=x;x=y;y=t; printf("%d %d",x,y); int n=0; while(n++<=1) printf("%d\t",n); printf("%d\n",n); / 阅读全文
posted @ 2022-10-17 19:47
myrj
阅读(113)
评论(0)
推荐(0)
摘要:
import psutil def guanbi(): TARGET = "adb.exe" [process.kill() for process in psutil.process_iter() if process.name() == TARGET] 阅读全文
posted @ 2022-10-17 11:02
myrj
阅读(109)
评论(0)
推荐(0)
摘要:
#include <stdio.h> //每找到一个重复的元素,则最末尾前移一位,去重范围缩小一位 //找到重复元素后,此时数组下标之后的元素向前移一位 //程序后,数组中最右边的值是原数组最右边的值 main() { //int a[]={1,1,1,1,2,2,2,2,2,3,4,5,5,6,7 阅读全文
posted @ 2022-10-17 08:39
myrj
阅读(284)
评论(0)
推荐(0)