上一页 1 ··· 89 90 91 92 93 94 95 96 97 ··· 188 下一页
摘要: #include <stdio.h> main() { short i=-4; printf("%d %o %x %u",i,i,i,i); getchar(); } //试卷答案为:04 177774 fffc 65532 %o %x %ushort i=-4;i 2字节-4原码:10000000 阅读全文
posted @ 2022-10-31 09:04 myrj 阅读(1433) 评论(0) 推荐(0)
摘要: QQ简单设置 拒绝被拉入QQ群PC电脑:进入主界面,点击左下角的主菜单选项,然后点击“设置”上方的权限设置--左侧 临时会话取消勾选 “群” 手机QQ:点击头像设置 消息通知临时会话消息设置点击关闭“群” 阅读全文
posted @ 2022-10-31 08:56 myrj 阅读(1357) 评论(0) 推荐(0)
摘要: #include <stdio.h> main() { int a,b=2; a=(++b)+(b++); printf("%d,%d",a,b); } 阅读全文
posted @ 2022-10-24 15:33 myrj 阅读(228) 评论(0) 推荐(0)
摘要: import time,os from datetime import date ,datetime import schedule def tick(): print("tick ! the time is : %s" % datetime.now()) os.system("python ka0 阅读全文
posted @ 2022-10-18 08:44 myrj 阅读(149) 评论(0) 推荐(0)
摘要: #include <stdio.h> main() { int a=5,b=4,c=3,d=2; if(a>b>c) printf("%d\n",d); else if((c-1>=d)==1) printf("%d\n",d+1); else printf("%d\n",d+2); getchar 阅读全文
posted @ 2022-10-17 20:59 myrj 阅读(75) 评论(0) 推荐(0)
摘要: #include <stdio.h> main() { int x=4,y=4; int t=++x||++y; printf("%d %d %d\n",x,y,t); int a=1,b=1; t a&&--b; printf("%d %d %d\n",a,b,t); getchar(); } 阅读全文
posted @ 2022-10-17 20:44 myrj 阅读(77) 评论(0) 推荐(0)
摘要: #include <stdio.h> //int占用四个字节 //2的原码:00000000 00000000 00000000 00000010 //2取反后:11111111 11111111 11111111 11111101 //任何类型的数据在计算机中都是以二进制补码形式存储的 //正数的 阅读全文
posted @ 2022-10-17 20:12 myrj 阅读(238) 评论(0) 推荐(0)
摘要: #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 阅读(125) 评论(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 阅读(115) 评论(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 阅读(301) 评论(0) 推荐(0)
上一页 1 ··· 89 90 91 92 93 94 95 96 97 ··· 188 下一页