会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
myrj
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
85
86
87
88
89
90
91
92
93
···
188
下一页
2022年12月4日
C语言:显示当前时间
摘要: #include <stdio.h> #include <time.h> int main () { time_t tt;//typedef long time_t;time_t实际上是long型,从一个时间点(一般是1970年1月1日0时0分0秒)到当前的秒数。 time(&tt); //获取秒数
阅读全文
posted @ 2022-12-04 10:41 myrj
阅读(680)
评论(0)
推荐(0)
2022年12月2日
C语言:高精度乘法
摘要: #include <stdio.h> #include <string.h> #include <stdlib.h> char* multiply(char* num1, char* num2) { int la,lb,lc,i,j; int a[2001]={0}; int b[2001]={0}
阅读全文
posted @ 2022-12-02 17:21 myrj
阅读(229)
评论(0)
推荐(0)
C语言:求各位3-9位自幂数及和
摘要: #include <stdio.h> #include <math.h> main() { int b,c=0,d,shu[10],f,g=4,a,e; double sum=0; for(a=100;a<=1000000000;a++) { for(e=0;e<10;e++) shu[e]=0;
阅读全文
posted @ 2022-12-02 10:45 myrj
阅读(328)
评论(0)
推荐(0)
2022年12月1日
树莓派 命令
摘要: 1.查看IP 网关 ip route routle
阅读全文
posted @ 2022-12-01 11:02 myrj
阅读(38)
评论(0)
推荐(0)
2022年11月30日
python duxs0809f
摘要: import requests,time,datetime,os,sys,re,random,string,json,pymysql import configparser,multiprocessing from multiprocessing import Process,Lock,Manage
阅读全文
posted @ 2022-11-30 14:27 myrj
阅读(94)
评论(0)
推荐(0)
2022年11月28日
小米手机模拟NFC 门禁卡
摘要: 小米手机:实用工具:钱包 -门卡--点“+”号添加新卡,并命名
阅读全文
posted @ 2022-11-28 14:46 myrj
阅读(540)
评论(0)
推荐(0)
2022年11月27日
python 字符串变量替换
摘要: >>> ac="mmjj" >>> aaa="adfbvbad{}".format(ac) >>> aaa 'adfbvbadmmjj' >>> aaa="adfbvbad{}aaa{}".format(ac) Traceback (most recent call last): File "<py
阅读全文
posted @ 2022-11-27 09:41 myrj
阅读(160)
评论(0)
推荐(0)
python 汉字GB2312 %url编码
摘要: import urllib#汉字转编码aa=urllib.parse.quote("郭城峰".encode('gb2312'))#编码是GB2312print(aa)aa=urllib.parse.quote("格力塔扇".encode('gb2312'))print(aa) aa=urllib.p
阅读全文
posted @ 2022-11-27 08:54 myrj
阅读(517)
评论(0)
推荐(0)
2022年11月26日
小米手机NFC数据保存位置
摘要: redmi Note 8 Pro andriod--data--com.mipay.wallet-files-perf:
阅读全文
posted @ 2022-11-26 17:08 myrj
阅读(2829)
评论(0)
推荐(0)
VBA工作薄引用 方法
摘要: 工作簿的引用方法引用不同的工作簿有如下的方法: 1、 使用工作簿名称工作簿名称是指 Excel 文件的文件名,可以使用 Workbooks 集合引用方式来引用工作簿。 Sub test() MsgBox "名称为:" & Workbooks("1.xlsx").Path '显示路径,但是目前打开的名
阅读全文
posted @ 2022-11-26 15:39 myrj
阅读(628)
评论(0)
推荐(0)
上一页
1
···
85
86
87
88
89
90
91
92
93
···
188
下一页
公告