码迷,mamicode.com
首页 >  
搜索关键字:min    ( 21007个结果
windows禁用启动设备API(c/cpp)
1 #include <time.h> 2 #include <stdio.h> 3 #include <errno.h> 4 #include <string.h> 5 #include <stdlib.h> 6 7 #include <winsock2.h> 8 #include <iphlpa ...
分类:Windows程序   时间:2021-06-02 20:00:15    阅读次数:0
私人书信
My Dear Friend, Congratulations on your graduation from college! I am glad to hear that you plan on starting your career in China, and I would like to ...
分类:其他好文   时间:2021-06-02 19:29:05    阅读次数:0
如何判断乘法溢出
网上的很多代码都是错的 正确的代码 using ll = long long int; ll is_mul_overflow(ll a,ll b) { if (a == -1) return (b == INT64_MIN); if (b == -1) return (a == INT64_MIN) ...
分类:其他好文   时间:2021-06-02 19:24:09    阅读次数:0
计应191西仝宣婉
创建小学生口算题目文件math.txtfobj = open('math.txt', 'w')defbase_exei_oneline(pmin, pmax, mmin, mmax, multimin, multimax, divmin, divmax):'''pmin,pmax:加数、被加数最小最 ...
分类:其他好文   时间:2021-06-02 19:16:06    阅读次数:0
list<obj>提取int类型进行计算
1 /** 2 * Statistics测试. 3 * 4 * @param streamBeanList 5 */ 6 public void testStatistics(List<StreamBean> streamBeanList) { 7 8 IntSummaryStatistics in ...
分类:其他好文   时间:2021-06-02 18:57:02    阅读次数:0
camke(1)配置Opencv
首先装好opencv。 然后创建工程 CMakeLists.txt # cmake needs this line cmake_minimum_required(VERSION 3.1) # Define project name project(opencv_example_project) # ...
分类:其他好文   时间:2021-06-02 18:54:02    阅读次数:0
CKA考试
1. K8S集群Control Plane版本升级,不包括etcd、coreDNS 参考文档 https://v1-20.docs.kubernetes.io/zh/docs/tasks/administer-cluster/safely-drain-node/ https://v1-20.docs ...
分类:其他好文   时间:2021-06-02 18:24:52    阅读次数:0
windows下gcc的安装和使用(更新)
写在源文件中的源代码是人类可读的源。它需要"编译",转为机器语言,这样 CPU 可以按给定指令执行程序。C 语言编译器用于把源代码编译成最终的可执行程序。这里假设您已经对编程语言编译器有基本的了解了。 (一).安装 1.为了在 Windows 上安装 GCC,需要到MinGW 的主页 ,进入 Min ...
分类:Windows程序   时间:2021-06-02 15:59:14    阅读次数:0
模拟微信朋友圈时间显示规则
/* * 24小时内显示几小时前 * 7天内显示几天前 * 超过7天显示月日 * */public function getTimeResult($time=1622256157){ //当前的时间戳 $ctime = time(); //当前时间戳-传入的时间戳=时间差 $difference = ...
分类:微信   时间:2021-06-02 15:29:24    阅读次数:0
java后端工具积累
1.常用日志框架 https://blog.csdn.net/qq_28623375/article/details/114647888 2.logback打印线程号 https://www.cnblogs.com/minikobe/p/12161369.html 3.加载properties文件的 ...
分类:编程语言   时间:2021-06-02 15:19:20    阅读次数:0
21007条   上一页 1 ... 6 7 8 9 10 ... 2101 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!