码迷,mamicode.com
首页 >  
搜索关键字:define    ( 25272个结果
Northern Eurasia Finals Online 2020 L - Lookup Performance
处理了一年的边界问题 #include <bits/stdc++.h> using namespace std; const int N = 2e5 + 10; #define fi first #define se second #define sz(v) ((int)(v).size()) #d ...
分类:其他好文   时间:2021-03-15 11:18:36    阅读次数: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
1309【毕设课设】基于单片机超声波测距仿真系统设计
【资源下载】下载地址如下:https://docs.qq.com/doc/DTlRSd01BZXNpRUxl #include <reg51.h> //预处理命令,定义SFR的头 #include <math.h> #include <intrins.h> //内部函数库文件 #define uch ...
分类:其他好文   时间:2021-03-11 14:59:48    阅读次数:0
1310【毕设课设】基于单片机超声波测距和温度采集报警(含PCB)
【资源下载】下载地址如下:https://docs.qq.com/doc/DTlRSd01BZXNpRUxl #include <reg52.h> #include <intrins.h> #define uchar unsigned char // 以后unsigned char就可以用uchar ...
分类:其他好文   时间:2021-03-11 14:48:55    阅读次数:0
pipioj 1026: a+b问题(简单模拟)
http://www.pipioj.online/problem.php?id=1026 1 #define IO std::ios::sync_with_stdio(0),cin.tie(0),cout.tie(0); 2 #define bug(x) cout<<#x<<" is "<<x<<e ...
分类:其他好文   时间:2021-03-10 13:26:07    阅读次数:0
1285【毕设课设】基于单片机SHT11温湿度采集报警系统设计
【资源下载】百度网盘下载地址如下:https://docs.qq.com/doc/DTlRSd01BZXNpRUxl #include<reg51.h> #include <intrins.h> #include <math.h> #include <stdio.h> #define LCD_DB ...
分类:其他好文   时间:2021-03-09 13:49:00    阅读次数:0
[CF696C] PLEASE - 概率
给你三个杯子,一开始钥匙放在中间的杯子里,然后每一回合等概率将左右两个杯子中的一个与中间杯子交换。求n回合之后钥匙在中间杯子的概率。这里要求概率以分数形式输出,先化成最简,然后对1e9 + 7取模。 ...
分类:其他好文   时间:2021-03-08 13:48:36    阅读次数:0
修改if-else多层嵌套的方法
例子:在判断三角形形状的一个程序中,会出现 if-else 的多层嵌套,可利用程序的顺序执行结构重构代码,使其更可读。如果还想保证代码的安全性,可以用函数封装这段代码。 #include <stdio.h> #include <stdlib.h> #define PI 3.1415926 /* ru ...
分类:其他好文   时间:2021-03-08 13:44:39    阅读次数: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
基本概念(7)——Google C++命名规范
文件名 —————————————————————————————— 文件名全部小写,可以含下划线或连字符,按项目约定命名,且尽量保证文件名明确。比如: cmd_save_player_info_class.cc my_use_full_class.cc 定义类的文件名一般是成对出现,如:foo_b ...
分类:编程语言   时间:2021-03-08 13:07:04    阅读次数:0
25272条   上一页 1 ... 16 17 18 19 20 ... 2528 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!