05 2022 档案
摘要://文件名o531a.c #include <stdio.h> #include "0530-1.c" main() { printf("%d",pd(2)); getchar(); } #include <stdio.h> int pd(int a) { if(a%2==0) return 1;
阅读全文
摘要:1,从PLC 的组成来看, 除 CPU ,存储器及通信接口外,与工业现场直接有关的还有哪些接口?并说明其主要功能。 (1)输入接口:接受被控设备的信号,并通过光电耦合器件和输入电路驱动内部电路接通或断开。 (2)输出接口:程序的执行结果通过输出接口的光电耦合器件和输出组件 (继电器、 晶闸管、晶体管
阅读全文
摘要:+485- AD1 AD2 DA1 DA2COM2 DC24VERROR X 0 1 2 3 4 5 6 7 10 11 12 13 14 15 16 17 16D1/16RLYRUNPOW/COM Y 0 1 2 3 4 5 6 7 10 11 12 13 14 15 16 17 32MR-2AD
阅读全文
摘要:地址: Terminal21,วัฒนา,วัฒนา,กรุงเทพมหานคร10110,ประเทศไทยTraceback (most recent call last): File "D:/Python37/dp0529a.py", line 635, in <module> uu=jian
阅读全文
摘要:Unicode编码的字符串,print()显示为'\u....'开头,在Python中无法通过直接删除'\u'来获取后边的字符串,通过如下方法可以 '\ue567'.encode('raw_unicode_escape').decode('utf-8').replace('\\u', '')得到'e
阅读全文
摘要:import os os.getcwd() os.chdir('E:\TE\') 搜索 复制
阅读全文
摘要:https://download.csdn.net/download/codings/10419196?utm_source=iteye Cadence Allegro 16.6 精简版 免安装
阅读全文
摘要:查看jdk安装路径:1.先检查java是否安装过java -versionC:\Users\admin>java -versionjava version "1.8.0_291"Java(TM) SE Runtime Environment (build 1.8.0_291-b10)Java Hot
阅读全文
摘要:小米手机安装过的APK上传到电脑:1.在手机中找到安装过的APP图标2.长按相应的图标,点击“分享"3.选择”将文件发送到“微信"发送给朋友“或"QQ发送到电脑“即可 搜索 复制
阅读全文
摘要:#include <stdio.h> #include <math.h> main() { int a=1003; int b,c=0,d=0,s=0;while(a) { b=a%2; s=s+b*pow(10,d); d++; a=a/2; } printf("%d",s); getchar()
阅读全文
摘要:#include<stdio.h> main() { int year,month,date,x=0,t=0; printf("请输入年份:"); scanf("%d",&year); printf("请输入月份:"); scanf("%d",&month); printf("请输入几号:"); s
阅读全文
摘要:京东 --设置 --支付设置--支付验密设置--选择“虚拟资产验密后,京东支付再次验密”虚拟资产:包含京豆 红包 钢镚 礼品卡等 搜索 复制
阅读全文
摘要:function xianshi ( obj ) { // 用来保存所有的属性名称和值 var props = "" ; // 开始遍历 for ( var p in obj ){ // 方法 if ( typeof ( obj [ p ]) == " function " ){ obj [ p ]
阅读全文
摘要:let p = T["match"](/(kuaishou.api_st=[\w\-]+)/)[1] + ';'; let z = T["match"](/(did=[\w\-]+)/)[1] + ';'; let z1 = T["match"](/(ver=[\w\-]+)/)[1] + ';';
阅读全文
摘要:a='2022/5/12 16:27:45'print(a[::-1])54:72:61 21/5/2202 搜索 复制
阅读全文
摘要:PyV8是 Google 官方将 Chrome V8 引擎用 Python 封装的库,和 ExecJS相比,这个库很轻量,不需要额外装 JS 环境,因为 V8 本身就是环境,同时也因为不需要启动外部环境,执行速度很快。 Python3 安装PyV8不要使用pip,因为官方只支持 Python2,需要
阅读全文
摘要:NodeJs下 crypto-js prettytabledotenv jsdomdate-fns tough-cookie tslibws@7.4.3 ts-md5 jsdom -g jieba fsform-data json5 global-agent png-js @types/node r
阅读全文
摘要:docker toolbox下载地址:https://mirrors.aliyun.com/docker-toolbox/
阅读全文
摘要:下载青龙:https://soft.xitongxz.net/202204/DockerDesktop_V4.7.1.0_XiTongZhiJia.zip https://ftp-new-pc.pconline.com.cn/pub/download/201903/pconline155184921
阅读全文
摘要:6个数字的定时规则 第1个是秒,第2个是分,第3个是时,第4个是每月的哪日,第5个是哪月,第6个是每周的周几。 数字之间空格隔开。 不限制的用*号替代,定期的时间用“?”替代,间隔运行时间用“*/数字”替代 同一个时间位多个选项用","连接,同一个时间位一个区间用“-”连接。 每天执行,在天位或者周
阅读全文
摘要:Auto.js《快手急速版》 //坐标机型:华为P10 //检查无障碍权限申请 auto.waitFor(); //设置屏幕宽度高度 setScreenMetrics(1080, 1920); //常量设置 var AppName = "快手极速版"; var AppName_JB = "快手极速版
阅读全文
摘要:https://github.com/search?q=ksjsb ql raw https://pd.zwc365.com/https://raw.githubsercontent.com/leafxcy/JavaScript/main/ksjsb.js 搜索 复制
阅读全文
摘要:#include <stdio.h> int gysc(int a,int b) { int c,d; for(c=1;c<=b;c++) if(a%c==0&&b%c==0) d=c; return d; } int gysa(int ys,int b) { ys=ys%b; if(!ys) re
阅读全文
摘要:#include <stdio.h> //已知任意表示时间的24小时制整数转化为12小时制时间显示,并用AM PM表示上午或下午 //如1625,2348,834,1035分别显示04:25PM 11:48PM 08:34AM 10:35AM main() { int t,h,m; t=1605;
阅读全文
摘要:import re,sys,time,requests def headx(aab): ab=[] ax1=aab.split('\n') for i in ax1: ax2=i.split(': ') ab.append((ax2[0],ax2[1])) tt=dict(ab) return tt
阅读全文
摘要:Python安装skimage的方法 pip install scikit-image 搜索 复制
阅读全文
摘要:import uiautomator2 as u2 import time,sys,emoji,pymysql,random import logging,datetime import re import json from string import Template from func_tim
阅读全文
摘要:#include <stdio.h> #include <math.h> #include <string.h> int pdhwd(int shu) { int a[10],i=0,b; while(shu!=0) { a[i]=shu%10; shu=shu/10; i++; } for(b=0
阅读全文
摘要:#include <stdio.h> int cf(int a) { int c=1,s=1; for(c=1;c<=a;c++) s=s*10; return s; } int pdhw(int shu) { int c=shu,a=1,b,d; while(shu) { shu=shu/cf(a
阅读全文
摘要:#include <stdio.h> main() { char s[]="ab\0cd"; int t=sizeof(s)/sizeof(s[0]); int m=strlen(s); printf("%d %d %s\n",m,t,s); getchar(); } 搜索 复制
阅读全文
摘要:租赁合同: 租赁期间内承租人是房屋的实际管理人,承租人需要时刻注意防火防盗、防触电,不做危及自身人身安全的活动,并且承租人在房屋内发生的一切安全事故都由承租人自己承担,与出租人无关,包括但不限于高空抛物、水、电、煤气使用不当、在房屋内摔倒等造成的人身伤亡。如果承租人利用此房进行不正当的经营或者违法活
阅读全文
摘要:import os,time,re,sys,subprocess os.chdir('F:\wifi\hashcat-6.2.5\hashcat-6.2.5') ab='hashcat -m 22000 BCD1.hc22000 -a 3 ?d?d?d?d?d?d?d?d -w 3 -D 2 -O
阅读全文