码迷,mamicode.com
首页 >  
搜索关键字:code    ( 108667个结果
数字转汉字
阿拉伯数字转汉字数字 public static String int2chineseNum(int src) { final String num[] = {"零", "一", "二", "三", "四", "五", "六", "七", "八", "九"}; final String unit[] ...
分类:其他好文   时间:2021-06-02 19:53:42    阅读次数:0
Nginx 开启,关闭,重启,查看命令,错误解决:Job for nginx.service failed because the control process exited with error code
启动nginx服务时如果遇到这个错误 Job for nginx.service failed because the control process exited with error code. See “systemctl stat 可能原因如下: 1.nginx配置文件有错误 运行下面命令查 ...
分类:其他好文   时间:2021-06-02 19:50:08    阅读次数:0
每日日报
日志猫的使用 logcat //区别 输出颜色不同 级别不同 Log.v("MainActivity", "verbose");//黑色的日志 Log.d("MainActivity", "debug"); //蓝色的日志 Log.i("MainActivity", "info"); // 绿色的日 ...
分类:其他好文   时间:2021-06-02 19:48:28    阅读次数:0
mybatis3
跟数据库进行交互 mybatis3逆向工程 MBG generator 两个critical 或的关系 ?????????? CRUD 是什么? Mybatis 工作原理 首先调用 SqlSessionFactoryBuilder build build 函数中 先创建 XmlConfigBuild ...
分类:其他好文   时间:2021-06-02 19:47:58    阅读次数:0
--陆小曼《随着日子往前走》
这个世界上没有不带伤的人,无论什么时候,你都要相信,真正治愈自己的,只有自己。不去抱怨,尽量担待;不怕孤单,努力沉淀。 ...
分类:其他好文   时间:2021-06-02 19:42:59    阅读次数:0
分离部署lamp
环境介绍 RHEL8 nginx 192.168.92.129 RHEL8 myxql 192.168.92.130 RHEL8 php 192.168.92.131 nginx配置 //关闭服务器和selinux [root@nginx ~]# systemctl disable --now fi ...
分类:其他好文   时间:2021-06-02 19:38:14    阅读次数:0
Building Systems-Using pdb4amber
1 Building Systems 1.1 用pdb4amber准备PDB文件 学习结果: 了解Amber基本信息流中的步骤 了解pdb4amber命令的基本语法 介绍: ...
分类:数据库   时间:2021-06-02 19:35:36    阅读次数:0
Palindromic Numbers LightOJ - 1205
原题链接 考察:数位dp 思路: 求回文数字的个数. dfs参数: 1.pos 枚举到第几位 2.len 回文数的长度. 其实不需要变量记录是否合法,不合法的不取搜就行了. ##Code #include <iostream> #include <cstring> using namespace s ...
分类:其他好文   时间:2021-06-02 19:35:00    阅读次数:0
面试题 02.05. 链表求和(链表)
1. 题目 给定两个用链表表示的整数,每个节点包含一个数位。 这些数位是反向存放的,也就是个位排在链表首部。 编写函数对这两个整数求和,并用链表形式返回结果。 2. 示例 示例1: 输入:(7 -> 1 -> 6) + (5 -> 9 -> 2),即617 + 295 输出:2 -> 1 -> 9, ...
分类:其他好文   时间:2021-06-02 19:33:54    阅读次数:0
个人所得税计算系统
Windows系统,C语言个人所得税计算系统。 1 #include <stdio.h> 2 3 #include <windows.h> 4 5 int main() 6 7 { const int ZBB=5000; 8 9 const float Ctaxrate0=0; 10 11 cons ...
分类:其他好文   时间:2021-06-02 19:31:27    阅读次数:0
108667条   上一页 1 ... 48 49 50 51 52 ... 10867 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!