This passage is wrote to introduce the header file <iomanip>. The basic usage of the library funcions from this header file is in the form of "."or by ...
分类:
其他好文 时间:
2020-04-25 17:34:58
阅读次数:
65
恢复内容开始 E{XE{Y|C}}=E{YE{X|C}} 现在有没有适合大学生用的搜题软件呢? https://www.zhihu.com/question/51935291/answer/514312093 Approach0 (https://approach0.xyz/search/) 专门用 ...
分类:
其他好文 时间:
2020-04-25 12:18:56
阅读次数:
220
COMS3200/7201 Assignment 1Due: 20th April 2020, 20:00100 marks total (20% weight for the final grade (100%))Part A (20 marks total)Answer each of the ...
分类:
其他好文 时间:
2020-04-22 19:36:33
阅读次数:
54
1.网络信息查看 [root@localhost linux_shell]# yum -y install bind-utils #CentOS_7默认没有nslookup命令,需要安装 [root@localhost linux_shell]# nslookup www.baidu.com #ns ...
分类:
其他好文 时间:
2020-04-19 22:26:19
阅读次数:
87
1.定义一个方法: function show() {//接收开始时间 var startTime = "${time}"; var array = startTime.split(":"); var h1 =parseInt(array[0]); var m1 =parseInt(array[1] ...
分类:
Web程序 时间:
2020-04-19 19:44:36
阅读次数:
194
项目合作者 张宇芃3118004987 朱杰晖3118004989 1.Github项目地址:https://github.com/786095601/Pairing Project 2. | PSP2.1 | Personal Software Process Stages | 预估耗时(分钟) ...
分类:
其他好文 时间:
2020-04-14 20:30:59
阅读次数:
58
$.ajax({ datatype:'json', type:"post", url:"/test/doTest.do", traditional: true,//如果传值有数组,需要写 data:{ "timeConsumes":sumtime, "answers" :checkans, }, s ...
分类:
编程语言 时间:
2020-04-07 22:48:14
阅读次数:
78
枚举是一组有名字的常量集合 数字枚举 枚举值会递增,并采用反向映射的原理 字符串枚举 编译结果显示只有成员名称作为key,所以它不能进行反向映射的 异构枚举 数字枚举和字符串枚举混用的结果,容易引起混淆,不建议使用 枚举成员 枚举成员的值是只读类型,定义后不能修改。 1.const member(常 ...
分类:
其他好文 时间:
2020-04-07 11:09:05
阅读次数:
67
`有效括号字符串 定义:对于每个左括号,都能找到与之对应的右括号,反之亦然。详情参见题末「有效括号字符串」部分。` `A 或 B 中的元素在原字符串中可以不连续。` `深度最小:max(depth(A), depth(B)) 的可能取值最小。` `answer[i] = 1,seq[i] 分给 B ...
分类:
其他好文 时间:
2020-04-04 11:48:24
阅读次数:
58
给定一组整数,还有一个目标数,在给定这组整数中找到两个数字,使其和为目标数,如找到,解是唯一的。找不到则显示 "no answer"。输出的下标按从小到大排序。用一重循环加字典实现。 输入格式: 在一行中给出这组数。 在下一行输入目标数 输出格式: 在一行中输出这两个数的下标,用一个空格分开。 输入 ...
分类:
其他好文 时间:
2020-04-04 11:25:22
阅读次数:
171