上一页 1 ··· 142 143 144 145 146 147 148 149 150 ··· 186 下一页
摘要: def multiScan(self): """ Scan and return an array of PIL objects If no images, will return an empty array """ self.scanner.RequestAcquire(0, 1) images 阅读全文
posted @ 2021-05-14 06:30 myrj 阅读(1473) 评论(1) 推荐(0)
摘要: Function pda(x) a = x If Len(a) = 1 Then ab = "00" & a ElseIf Len(a) = 2 Then ab = "0" & a Else ab = a End If pda = ab End Function Sub yy() Worksheet 阅读全文
posted @ 2021-05-12 15:51 myrj 阅读(202) 评论(0) 推荐(0)
摘要: Function pda(x) a = x If Len(a) = 1 Then ab = "00" & a ElseIf Len(a) = 2 Then ab = "0" & a ElseIf Len(a) = 3 Then ab = a End If pda = ab End Function 阅读全文
posted @ 2021-05-12 14:25 myrj 阅读(1802) 评论(0) 推荐(0)
摘要: 1.C语言的特点?2.10进制整数转化为2进制的方法: 将10进制数除以2,除到商为0为止,记住每次所得的余数,反向写其余数即可3.10进制整数转化为8进制的方法: 将10进制数除以8,除到商为0为止,记住每次所得的余数,反向写其余数即可4.10进制整数转化为16进制的方法: 将10进制数除以16, 阅读全文
posted @ 2021-05-10 16:11 myrj 阅读(390) 评论(0) 推荐(0)
摘要: wh:model:UA48J5088 软件版本号:T-MXL3JDCND-1009.0 ec6100 全4K智能机顶盒 canfei:780/月 20201015-20210303 1171-1170chu 12972-12644 164.5 shui1412-1382=90 阅读全文
posted @ 2021-05-05 16:01 myrj 阅读(75) 评论(0) 推荐(0)
摘要: 闰年问题,因为二月份的天数与闰年有关。闰年的判断依据是:若某年能被4整除,但不能被100整除,则这一年是闰年;若某年能被400整除,则这一年也是闰年 #include <stdio.h> #include <stdlib.h> main(){ int year, month, days; while 阅读全文
posted @ 2021-05-04 09:50 myrj 阅读(1643) 评论(0) 推荐(0)
摘要: import pyaudio import wave from PIL import ImageGrab import cv2 import threading import time from numpy import array from moviepy.editor import * impo 阅读全文
posted @ 2021-05-02 17:24 myrj 阅读(665) 评论(0) 推荐(0)
摘要: C语言虽然没有限制 if else 能够处理的分支数量,但当分支过多时,用 if else 处理会不太方便,而且容易出现 if else 配对出错的情况。例如,输入一个整数,输出该整数对应的星期几的英文表示: #include <stdio.h> int main(){ int a; printf( 阅读全文
posted @ 2021-04-29 06:19 myrj 阅读(6185) 评论(0) 推荐(0)
摘要: #include <stdio.h> int main() { int a;float b; scanf("a=%d,b=%f",&a,&b); printf("%d,%f\n",a,b); printf("%d\n",a+(int)b); getchar(); } 应该输入:a=45,b=3.6 阅读全文
posted @ 2021-04-28 16:49 myrj 阅读(57) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2021-04-28 14:34 myrj 阅读(32) 评论(0) 推荐(0)
上一页 1 ··· 142 143 144 145 146 147 148 149 150 ··· 186 下一页