好物分享
-
1625:Sequence Median(翻译)
http://noi.openjudge.cn/ch0401/1625/ 描述 Given a sequence of N nonnegative integers. Let's define the median of such sequence. If N is odd the medi…… -
翻译day14
题目:Children's Apples 链接:Children's Apples | JXNUOJ 翻译: 题面:有n个孩子,每个孩子有一个互不相同的正整数。给出孩子的数量,找一个可行的分…… -
错题小结2
1. 问题:程序出错在什么阶段? 答案:程序正常运行 解析:main函数可以接受两个参数 int main(int argc,char *argv[]),argc = arguments count表示参数个数…… -
高精度计算
长整数相加 #include #include using namespace std; vector b,a; vector add(vectora,vectorb){ vectorc; int t=0; for(int i=0;i -
-
Timer类
1. Timer类 java.util.Timer 定时器类,使用定时器完成定时任务,任务可以安排一次执行,或者定期重复执行 1.1 构造方法 1.空参构造:创建一个新的定时器 Time…… -
Xshell安装宝塔Centos时,出错了,怎么解决
复制的安装,命令 yum install -y wget && wget -O install.sh http://download.bt.cn/install/install_6.0.sh && sh install.sh Xshell安装宝塔…… -
Bomb Game
http://noi.openjudge.cn/ch0201/1661/ 描述 Bosko and Susko are playing an interesting game on a board made of rectangular fields arranged in A rows a…… -
-
SQL76 考试分数(五)
文章目录 题目题解 题目 题目来源:SQL76 考试分数(五) 题目描述 写一个sql语句查询各个岗位分数的中位数位置上的所有grade信息,并且按id升序排序 一张表……