码迷,mamicode.com
首页 >  
搜索关键字:long live the queen    ( 22219个结果
基础知识复习 (二) 数据类型转换,运算符和流程控制语句
一,数据类型转换 (1),自动类型转换: 1. 特点:代码不需要进行特殊处理,自动完成。 2. 规则:数据范围从小到大。 3.转换规则:范围小的类型向范围大的类型提升, byte、short、char 运算时直接提升为 int 。 byte、short、char‐‐>int‐‐>long‐‐>flo ...
分类:其他好文   时间:2021-03-15 11:23:32    阅读次数:0
力扣--最长公共前缀
最长公共前缀 Category Difficulty Likes Dislikes algorithms Easy (39.25%) 1495 - 编写一个函数来查找字符串数组中的最长公共前缀。 如果不存在公共前缀,返回空字符串 ""。 示例 1: 输入:strs = ["flower","flow ...
分类:其他好文   时间:2021-03-15 11:21:15    阅读次数:0
LRU代码实现
#include<bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int,int> PII; #define ls l,mid,rt<<1 #define rs mid+1,r,rt<<1|1 const ...
分类:其他好文   时间:2021-03-15 11:08:22    阅读次数:0
Java数据类型转换
public class Demo04 { public static void main(String[] args) { //低 >高 //byte、short、char->int->long->float->double int i = 128; //强制转换,(类型)变量名 高-->低 by ...
分类:编程语言   时间:2021-03-11 19:31:35    阅读次数:0
1308【毕设课设】基于单片机超声波测距电路仿真设计
【资源下载】下载地址如下:https://docs.qq.com/doc/DTlRSd01BZXNpRUxl #include <reg52.H>//器件配置文件 #include <intrins.h> //传感器接口 sbit RX = P3^2; sbit TX = P3^3; //按键声明 ...
分类:其他好文   时间:2021-03-11 15:20:52    阅读次数:0
Micronaut微服务 | 基础入门
Some people hear their own inner voices with great clearness. And they live by what they hear.Such people become crazy,or they become legends ...... 有 ...
分类:其他好文   时间:2021-03-10 13:21:51    阅读次数:0
漫漫Java路1—基础知识3—数据类型和变量作用域以及常量
强类型语言 所有变量定义后才能使用,区别于js等弱类型语言 数据类型分类 基本类型(primitive type) 引用类型(reference type) 整数类 byte:占1字节 short:占2字节 int:占4字节 long:占8字节 浮点类 float:占4字节 double:占8字节 ...
分类:编程语言   时间:2021-03-09 13:38:53    阅读次数:0
包装类与装箱、拆箱
包装类 基本数据类型所对应的引用数据类型 0bject可统一所有数据,包装类的默认值是null 包装类对应 基本数据类型 包装类型 byte Byte short Short int Integer long Long float Float double Double boolean Boolea ...
分类:其他好文   时间:2021-03-08 14:18:04    阅读次数:0
code_review
类别 检查项 检查结果 代码 Readability 通过 Duplicated Code 通过 Hard Coding 通过 Long Method(100行) 通过 Long Parameter List(最多4个) 通过 Large Class 通过 Switch Statement 通过 L ...
分类:其他好文   时间:2021-03-08 14:04:45    阅读次数:0
数论:入门到入土 Three
超短文警告! 埃氏筛: #include <iostream> #include <cstring> #include <stdio.h> #define HRiver2 return #define Warma 0 #define ll long long #define maxn 114514 ...
分类:其他好文   时间:2021-03-08 13:23:25    阅读次数:0
22219条   上一页 1 ... 17 18 19 20 21 ... 2222 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!