码迷,mamicode.com
首页 >  
搜索关键字:static const    ( 70582个结果
2021团体程序设计天梯赛 L1-8 乘法口诀数列
思路: 水题,略过 Tip: 无 #include <bits/stdc++.h> using namespace std; const int maxn = 1000 + 5; int ans[maxn]; int main() { int a, b, n; cin >> a >> b >> n; ...
分类:其他好文   时间:2021-04-27 15:09:43    阅读次数:0
2021团体程序设计天梯赛 L2-1 包装机
思路: 水题,略过 Tip: 无 #include <bits/stdc++.h> using namespace std; const int maxn = 1000 + 5; queue<char> que[maxn]; stack<char> s; int main() { int n, m, ...
分类:其他好文   时间:2021-04-27 15:08:37    阅读次数:0
主席树模板
#include <iostream> #include <algorithm> #include <cstdio> using namespace std; const int N = 2e5 * 20; int a[N], b[N], root[N]; struct President_Tree ...
分类:其他好文   时间:2021-04-27 15:01:57    阅读次数:0
java遍历文件
java遍历文件 package com.vfsd.test; import java.io.File; import java.io.IOException; public class ListFileName { public static void main(String[] args) { ...
分类:编程语言   时间:2021-04-27 15:01:42    阅读次数:0
hash
#include <bits/stdc++.h> typedef unsigned long long ll; const ll P=1331; using namespace std; ll hash1[1000000],u[1000000]; ll get(int l,int r){ retur ...
分类:其他好文   时间:2021-04-27 15:00:27    阅读次数:0
Java数值类型知识拓展
public class Dome { //数据类型知识拓展 //二级制 八进制 十进制 十六进制 //二级制 值以0b开头 //八进制 值以0开头 //十六进制 值以0x开头 A-F 分别对应10-15 public static void main(String[] args) { int nu ...
分类:编程语言   时间:2021-04-27 14:39:10    阅读次数:0
记录:C#创建共享内存,可用于两个独立进程间的通信(转)
https://www.cnblogs.com/hepeng/p/8780552.html public class ShareMem { [DllImport("user32.dll", CharSet = CharSet.Auto)] public static extern IntPtr Se ...
分类:Windows程序   时间:2021-04-27 14:38:10    阅读次数:0
ASP.NET Core中使用NLog记录日志
1:添加Nlog的组件 直接在NuGet里面搜索NLog.Web.AspNetCore 2:然后就是配置服务 public class Program { public static void Main(string[] args) { CreateHostBuilder(args).Build() ...
分类:Web程序   时间:2021-04-27 14:26:50    阅读次数:0
typescript 数组类型的定义
简单的定义 const numArr:number[]=[1,2,3] const strArr:string[]=['a','b','c'] const undeArr:undefined[]=[undefined,undefined] 数组中有字符串又有数组的类型 const arr:(numb ...
分类:编程语言   时间:2021-04-27 14:24:27    阅读次数:0
【帆吖】Java学习零基础06
自增,自减&&逻辑运算符&&位运算符 1 package operator; 2 3 public class Demo4 { 4 public static void main(String[] args) { 5 //++ -- 自增 自减 一元运算符 6 int a=3; 7 8 int b= ...
分类:编程语言   时间:2021-04-27 14:20:46    阅读次数:0
70582条   上一页 1 ... 53 54 55 56 57 ... 7059 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!