码迷,mamicode.com
首页 >  
搜索关键字:unexpected eof bcp    ( 8055个结果
Vue学习-v-model修饰符lazy number trim
lazy修饰符 默认情况下,v-model默认是在input事件中同步输入框的数据的 lazy修饰符可以让数据在失去焦点或者回车时才会更新 <input type='text' v-model.lazy="message" /> <p>当前内容:{{message}}</p> number修饰符 默 ...
分类:其他好文   时间:2020-06-26 12:40:24    阅读次数:59
OC基础 NSArray 容器
@autoreleasepool { // insert code here... NSLog(@"Hello, World!"); //c语言中的数组问题 int arr[10]={1,2,3,4,5,6,7,8,9,0}; //c语言的数组只能存同类型的值 //固定大小的数组很难确定大小 int ...
分类:其他好文   时间:2020-06-25 23:10:27    阅读次数:60
Python中的“命名元组”是什么? - What are “named tuples” in Python?
问题: Reading the changes in Python 3.1 , I found something... unexpected: 阅读Python 3.1中的更改后 ,我发现了一些意外…… The sys.version_info tuple is now a named tuple ...
分类:编程语言   时间:2020-06-25 21:29:15    阅读次数:58
多源对多源最短路
https://ac.nowcoder.com/acm/contest/6116/B 魔方国有n座城市,编号为1\sim n1~n。城市之间通过n-1条无向道路连接,形成一个树形结构。 在若干年之后,其中p座城市发展成了大都会,道路的数量也增加到了m条。 大都会之间经常有贸易往来,因此,对于每座大都 ...
分类:其他好文   时间:2020-06-25 14:03:39    阅读次数:130
luogu P3376 【模板】网络最大流 模板
#include <iostream> #include <cstdio> #include <cstring> #define N 200005 using namespace std; #define int long long int n,m,S,T,tmp1,tmp2,tot; int id ...
分类:其他好文   时间:2020-06-25 13:31:36    阅读次数:58
LaTex文档的基本结构
代码: % 导言区,进行全局设置 \documentclass[AutoFakeBold]{article} % 导入中文宏 \usepackage{ctex} % 正文区 \begin{document} \section{引言} \section{实验方法} \section{实验结果} \su ...
分类:其他好文   时间:2020-06-25 12:16:54    阅读次数:71
CodeForces 1340D Nastya and Time Machine
CodeForces 1340D Nastya and Time Machine https://codeforces.com/contest/1340/problem/D \(n\) 个城市形成了一个树的结构,通过每个道路需要单位 $1$ 的时间,Nastya想要从 $1$ 节点出发,访问每个节点 ...
分类:系统相关   时间:2020-06-25 09:43:21    阅读次数:74
JAVA8 LocalDateTime
LocalDateTime <=> String //时间转字符串格式化 DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyyMMddHHmmssSSS"); String dateTime = LocalDateTime.n ...
分类:编程语言   时间:2020-06-24 18:04:28    阅读次数:58
Java实现的窗口计算器
计算器代码如下: 1 package ljm.calculator; 2 3 import javax.swing.*; 4 import java.awt.*; 5 import java.io.Serializable; 6 import java.math.*; 7 8 public clas ...
分类:编程语言   时间:2020-06-24 15:56:35    阅读次数:132
C语言单项链表
记录下来,以后用到了直接照抄。 代码 #include <stdio.h> #include <stdlib.h> typedef struct node { struct node *next; int value; } *SingleList; int value_compare(struct ...
分类:编程语言   时间:2020-06-24 12:03:09    阅读次数:40
8055条   上一页 1 ... 33 34 35 36 37 ... 806 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!