码迷,mamicode.com
首页 >  
搜索关键字:define    ( 25272个结果
Codeforces Round #702 (Div. 3)G(二分,模拟stl)
https://codeforces.com/contest/1490/problem/G 二分循环几轮,再二分哪个位置刚好够。 1 #define IO std::ios::sync_with_stdio(0),cin.tie(0),cout.tie(0); 2 #define bug(x) co ...
分类:其他好文   时间:2021-02-24 13:01:05    阅读次数:0
基于单片机30mv和300v量程的电压表仿真设计
百度网盘下载地址(964):点击下载 ? #include <reg52.h> #define uchar unsigned char #define uint unsigned int #include <intrins.h> /* 数码管段选定义 0 1 2 3 4 5 6 7 8 9 */ u ...
分类:其他好文   时间:2021-02-23 13:58:44    阅读次数:0
基于单片机C51全自动洗衣机仿真设计-毕设课设资料
百度网盘下载地址(966):点击下载 ? #define MOTOR_COUNT 100 //PWM波输出周期计数 #define sol 0x6c //将"so"宏定义为低音"5"的频率 784Hz #define Dol 0x44 //将"Do"宏定义为中音"1"的频率 523Hz #defin ...
分类:其他好文   时间:2021-02-23 13:58:27    阅读次数:0
P1939 【模板】矩阵加速(数列)
Aimee 矩阵加速递推的模板了。 #include <iostream> #include <cstdio> #include <algorithm> #include <cstring> #define int long long #define ll long long using names ...
分类:其他好文   时间:2021-02-22 12:24:51    阅读次数:0
Codeforces Round #703 (Div. 2) C2. Guessing the Greatest(二分,交互)
https://codeforces.com/contest/1486/problem/C2 #include<cstdio> #include<iostream> #include<deque> #include<cstring> #include<cmath> #include<map> #in ...
分类:其他好文   时间:2021-02-22 12:10:32    阅读次数:0
ABC 192 题解
A 模拟 B 模拟 C 模拟 #include<bits/stdc++.h> using namespace std; #define SET0(a) memset(a,0,sizeof(a)) #define FOR(i,a,b) for(int i=(a);i<=(b);i++) #define ...
分类:其他好文   时间:2021-02-22 12:10:05    阅读次数:0
c++调试输出到输出窗口
首先添加预处理定义_CRT_SECURE_NO_WARNINGS //例子:调试输出("%d和%d\n", 123,500); void 调试输出(const char* strOutputString, ...) { #define PUT_PUT_DEBUG_BUF_LEN 1024 char ...
分类:编程语言   时间:2021-02-22 12:06:11    阅读次数:0
小tips:ECMA-262定义的7种错误类型
七种错误类型如下: Error EvalError RangeError ReferenceError SyntaxError TypeError URIError 其中,Error是基类型(其他六种类型的父类型),其他类型继承自它。Error类型很少见,一般由浏览器抛出的。这个基类型主要用于开发人 ...
分类:其他好文   时间:2021-02-20 12:31:47    阅读次数:0
*-汉语-词汇-开发:技术架构
ylbtech-*-汉语-词汇-开发:技术架构 技术架构,technical architecture,大数据新词。 2020年7月,大数据战略重点实验室全国科学技术名词审定委员会研究基地收集审定的第一批108条大数据新词,报全国科学技术名词审定委员会批准,准予向社会发布试用。 1.返回顶部 2.返 ...
分类:其他好文   时间:2021-02-20 11:59:28    阅读次数:0
Postgresql 导入导出/创建库等基本使用小记,一看就懂,一学就会!
1. 创建数据库 法一:用登入默认用户postgresql创建 注:创建语句结束要记得加; 用postgresql登入数据库 sudo su - postgres psql 创建用户 CREATE USER dbuser WITH PASSWORD 'password'; 创建库 CREATE DA ...
分类:数据库   时间:2021-02-19 13:49:56    阅读次数:0
25272条   上一页 1 ... 18 19 20 21 22 ... 2528 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!