码迷,mamicode.com
首页 >  
搜索关键字:you    ( 26666个结果
C语言习题【5】strlen的模拟(递归和非递归分别实现strlen)
#include<stdio.h>#include<string.h>intmy_strlen(char*str){intcount=0;while(*str!=‘\0‘){count++;*str++;}returncount;}intmain(){chararr[]={"iloveyou"};intlen=my_strlen(arr);printf("%d",len);
分类:编程语言   时间:2020-03-19 09:26:40    阅读次数:54
Linux下mysql开启远程访问权限以及防火墙开放3306端口
1、首先要进入Linux服务器,查看3306端口是否开启。 netstat -an|grep 3306 如果显示如下,3306为红色,则表示,端口未开放。 2、修改访问权限 需要在mysql.conf文件中添加 port = 3306然后保存。具体怎么打开使用vim。 3、登录数据库 默认mysql ...
分类:数据库   时间:2020-03-18 18:45:53    阅读次数:81
BouncyCastle 密钥转换 - Java pkcs1格式,pkcs8格式互转
摘自:https://www.cnblogs.com/ylz8401/p/9004427.html 1. PKCS#8 转 PKCS#1 You will need BouncyCastle: import org.bouncycastle.asn1.ASN1Encodable; import or ...
分类:编程语言   时间:2020-03-18 18:29:04    阅读次数:280
remote_addr(::1)不返回IPv4地址127.0.0.1的解决办法
Turn off IPv6 in Apache To turn off IPv6 in Apache, just change the Listen directive to: Listen 0.0.0.0:80 This will limit Apache to listening only to ...
分类:其他好文   时间:2020-03-18 17:11:53    阅读次数:188
ArcGIS Pro 屏幕上一点转换为地图上点
/* Copyright 2018 Esri Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License ...
分类:其他好文   时间:2020-03-18 15:25:15    阅读次数:69
【Webots 用户指南】<The User Interface>
The User Interface Webots GUI is composed of four principal windows: the 3D window that displays and allows you to interact with the 3D simulation, th ...
分类:Web程序   时间:2020-03-18 14:03:52    阅读次数:197
184. 部门工资最高的员工
184. 部门工资最高的员工 需要注意的几个点,inner join可以缩减成join,取的是两个表的交集 in关键词,找的是当前所要找的数值是否在指定的范围之中 # Write your MySQL query statement below select d.Name as Department ...
分类:其他好文   时间:2020-03-18 14:00:50    阅读次数:79
【猫狗数据集】读取数据集的第二种方式
数据集下载地址: 链接:https://pan.baidu.com/s/1l1AnBgkAAEhh0vI5_loWKw提取码:2xq4 创建数据集:https://www.cnblogs.com/xiximayou/p/12398285.html 读取数据集:https://www.cnblogs. ...
分类:其他好文   时间:2020-03-18 13:10:04    阅读次数:122
【av68676164(p18-p20)】进程控制
4.2.1 进程控制的概念 进程控制的概念 在进程生存全期间,对其 全部行为的控制 存在四个典型的控制行为 创建进程 阻塞进程 撤销进程 唤醒进程 进程创建 功能 :创建一个具有制定标识(ID)的进程 参数 :进程标识、优先级、进程起始地址、CPU初始状态、资源清单等。 创建进程的过程 创建一个空白 ...
分类:系统相关   时间:2020-03-18 13:08:49    阅读次数:113
2019-ICPC沈阳重现:7-1 A-Leftbest
直接用set中的upper_bound! 7-1 A-Leftbest Jack is worried about being single for his whole life, so he begins to use a famous dating app. In this app, the u ...
分类:其他好文   时间:2020-03-18 11:56:29    阅读次数:89
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!