可靠小海豚

文章
6
资源
0
加入时间
3年0月20天

maven远程资源库配置经验记

下载依赖jar: 在MAVEN_HOME\setting.xml中,配置即可 <mirror> <id>nexus</id> <mirrorOf>*</mirrorOf> <url&

算法笔记

算法笔记欧几里得算法求最大公约数~又称辗转相除法,求两数的最大公约数gcd(a,b) = gcd(b,a%b)一般代码递归形式int gcd(int a,int b){ return b? gcd(b,a%b) :a ;}迭代形式int gcd(int a,int b){ while(1) { if(b == 0) return a; int temp = a%b; a = b; b = temp; } }性质及证明:设 x 为两整数a

Problem--231A--Codeforces--Team

Team time limit per test2 seconds memory limit per test256 megabytes inputstandard input outputstandard output One day three best friends Petya, Vasya and Tonya decided to form a team and take par

for循环 break和continuefor循环循环嵌套3.乘法口诀

for循环 break和continuefor循环循环嵌套3.乘法口诀for循环语法 for(表达式1;表达式2;表达式3){循环体}表达式1:变量初始化表达式2:循环条件表达式3:计数器累加例子class Demo9{ /** 打印1-100 */ public static void main(String[] args){ for(int i = 1;i <...