上一页 1 ··· 82 83 84 85 86 87 88 89 90 ··· 186 下一页
摘要: 阅读全文
posted @ 2022-12-04 12:26 myrj 阅读(16) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2022-12-04 12:25 myrj 阅读(16) 评论(0) 推荐(0)
摘要: #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 阅读(659) 评论(0) 推荐(0)
摘要: #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 阅读(216) 评论(0) 推荐(0)
摘要: #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 阅读(302) 评论(0) 推荐(0)
摘要: 1.查看IP 网关 ip route routle 阅读全文
posted @ 2022-12-01 11:02 myrj 阅读(33) 评论(0) 推荐(0)
摘要: 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 阅读(64) 评论(0) 推荐(0)
摘要: 小米手机:实用工具:钱包 -门卡--点“+”号添加新卡,并命名 阅读全文
posted @ 2022-11-28 14:46 myrj 阅读(533) 评论(0) 推荐(0)
摘要: >>> 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 阅读(152) 评论(0) 推荐(0)
上一页 1 ··· 82 83 84 85 86 87 88 89 90 ··· 186 下一页