摘要: #include <stdio.h> int add(int n) { if (n == 1) return 1; // 递归终止条件 else return n + add(n-1); // 递归调用 } int main() { printf("Sum is: %d\n", add(100)); 阅读全文
posted @ 2025-02-21 08:21 myrj 阅读(311) 评论(0) 推荐(0)
摘要: ftplibpexpect telnetlib https://github.com/camelot-dev/camelot 处理提取pdf 解决安装问题https://camelot-py.readthedocs.io/en/master/user/install-deps.html ffmpy安 阅读全文
posted @ 2022-01-13 05:20 myrj 阅读(73) 评论(0) 推荐(0)
摘要: import emoji #去掉表情等特殊字符 jieshao="包括表情的字符串" jieshao=emoji.demojize(jieshao) def filter_emoji(self,desstr,restr='[emoji]'): ''' 过滤表情 ''' try: co = re.co 阅读全文
posted @ 2021-11-09 05:46 myrj 阅读(1196) 评论(0) 推荐(0)
摘要: STC单片机采取EEPROM的模式而不采用FLASH.裸机程序指令就在Flash(Flash memory)中存放,而数据就放在了RAM中(flash的写入次数有限制,同时它的速度和RAM还是差很多)。更广泛说,在单片机上RAM存放data段、bss段、堆栈段;ROM(EPROM、EEPROM、Fl 阅读全文
posted @ 2021-08-12 21:03 myrj 阅读(468) 评论(0) 推荐(0)
摘要: 行号:pow() 列号:column() rem 将所有工作表名称写入到当前工作表第一列 Sub shtName() Dim sht As Worksheet, i As Integer i = 1 For Each sht In Worksheets Cells(i, "A") = sht.Nam 阅读全文
posted @ 2021-07-20 06:38 myrj 阅读(86) 评论(0) 推荐(0)
摘要: 快看点官网 腾讯平台 快影官方下载 素材 新片场 电影天堂影猫80s网 阅读全文
posted @ 2021-06-28 22:21 myrj 阅读(65) 评论(0) 推荐(0)
摘要: 1除法运算:两整数相除,结果为整数; 任意浮点数参与的除法运算结果为浮点型。所以pow(16,1/2)=1 pow(16,1.0/2)=4.00 pow(64,1.0/3)=4.00 球的体积v=4.0/3*3.14*pow(r,3); 三角形面积:d=1.0/2*(a+b+c);s=sqrt(d* 阅读全文
posted @ 2021-06-10 05:30 myrj 阅读(198) 评论(0) 推荐(0)
摘要: 清华:https://pypi.tuna.tsinghua.edu.cn/simple 阿里云:http://mirrors.aliyun.com/pypi/simple/ 中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/ 华中理工大学:http://p 阅读全文
posted @ 2020-11-18 14:52 myrj 阅读(671) 评论(0) 推荐(0)
摘要: SQL查询窗口 选择哪行执行哪行,不选择则从上到下依次执行 delete from xsxx where xsxm is null /****** 删除所有xsxm为null的记录******/ select * from xsxx where xsxm like '张%' //显示所有姓张的记录 阅读全文
posted @ 2020-11-07 09:25 myrj 阅读(150) 评论(0) 推荐(0)
摘要: 文件格式转换 快速分享 问卷星 文本对比网站 C语言编译器手机版 信息查看网址 网站 tiny hexer 试题电子版2 电子版 微博 小红书 根据要求写sql语句 chatGPT应用 chatGPT应用1STATA17下载 ekcp https://pan.baidu.com/s/1P7AkV-b 阅读全文
posted @ 2020-03-06 18:46 myrj 阅读(854) 评论(0) 推荐(0)
摘要: import requestsimport re txt='<a href="https://www.vgirls.com/13404.html" class="list-title text-md h-2x" target="_blank">想把夏日的阳光寄给冬日的你</a>'urla=re.fi 阅读全文
posted @ 2020-01-30 19:56 myrj 阅读(2047) 评论(0) 推荐(0)
摘要: Excel 2007及之后的版本,最多能保存‌1,048,576行‌。这个数字是2的20次方,是微软为了与计算机底层二进制高效协同而设定的。 如果你用的是更早的Excel 2003,行数上限是65,536行。想知道你的Excel版本,可以按Ctrl+↓看看最后一行是几。 阅读全文
posted @ 2025-12-07 07:02 myrj 阅读(0) 评论(0) 推荐(0)
摘要: WIN10 安装了python314idle,双击.py文件不能自动选择idle打开,如何解决 右键任意.py文件 → 选择“属性” → 点击“打开方式”后的“更改” 选择“更多应用” → “在这台电脑上查找其他应用” 导航至Python安装目录(如C:\Python314\Lib\idlelib) 阅读全文
posted @ 2025-11-30 07:29 myrj 阅读(2) 评论(0) 推荐(0)
摘要: WIN10桌面上自定义的快捷方式,如何放置固定到开始菜单 打开资源管理器,打开桌面,找到对应的快捷方式,右击,选择:固定到开始 即可 阅读全文
posted @ 2025-11-30 07:22 myrj 阅读(7) 评论(0) 推荐(0)
摘要: cap:mkdir 0119h cd "F:\BaiduNetdiskDownload\1973~2024 年降水量面板数据(含栅格数据)\区县" fs *.xlsx local ci=0 foreach file in `r(files)'{ import excel "`file'", shee 阅读全文
posted @ 2025-11-21 08:54 myrj 阅读(4) 评论(0) 推荐(0)
摘要: 新农合:微信小程序 山东税务社保费缴纳--居民医保 阅读全文
posted @ 2025-11-02 10:16 myrj 阅读(10) 评论(0) 推荐(0)
摘要: #include <stdio.h> main() { int a=1,i,j=10000,m=0,n; for(j=10000;j>=0;j--) { m=0; n=j; for(i=1;i<=9;i++) n=n/2-1; if(n==1){ m=1;break; } } } getch(); 阅读全文
posted @ 2025-10-16 19:25 myrj 阅读(8) 评论(0) 推荐(0)
摘要: #include <stdio.h> int main() { int i = 1, sum = 0; while (i <= 100) { sum += 【1】 } printf("1加到100的和为:%d\n", sum); return 0; } #include <stdio.h> int 阅读全文
posted @ 2025-09-23 11:18 myrj 阅读(102) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/Edward1027/article/details/139512230?utm_medium=distribute.pc_relevant.none-task-blog-2~default~baidujs_baidulandingword~default 阅读全文
posted @ 2025-09-04 19:00 myrj 阅读(15) 评论(0) 推荐(0)
摘要: #include <stdio.h> #include <string.h> main() { char zf[100]; int upper=0,lower=0,number=0,other=0,a; gets(zf); for(a=0;a<strlen(zf);a++) { if(zf[a]>= 阅读全文
posted @ 2025-09-02 17:07 myrj 阅读(16) 评论(0) 推荐(0)
摘要: 小程序:路查车况 里程记录查询 阅读全文
posted @ 2025-08-18 20:33 myrj 阅读(6) 评论(0) 推荐(0)