摘要: Spring boot 学习笔记1 1. 安装开发工具:IDEA 下载IDEA 可以去官网下载,速度可能有点慢。 百度网盘下载IDEA开发工具以及破解工具 提取码:irln 破解方法: 1). 启动你的IDE,如果上来就需要注册,选择:试用(Evaluate for free),然后点击"Evalu 阅读全文
posted @ 2020-09-10 10:38 盆古 阅读(144) 评论(0) 推荐(0) 编辑
摘要: 电商平台中,用户购买商品的资金先进入平台,平台再划拨给商户,这是常见的应用场景。但这种支付模式一不小心就违规了,其中涉及到“二清”问题,本文对此进行了深入剖析,并给出了解决思路。欢迎探讨! 阅读全文
posted @ 2019-03-24 09:50 盆古 阅读(3249) 评论(0) 推荐(1) 编辑
摘要: /****************************************************************************** * Compilation: javac Quadratic.java * Execution: java Quadatic b c * * Given b and c, solves for the roots... 阅读全文
posted @ 2018-09-18 10:40 盆古 阅读(250) 评论(0) 推荐(0) 编辑
摘要: /****************************************************************************** * Compilation: javac DoubleOps.java * Execution: java DoubleOps a b * * Illustrates the integer operations... 阅读全文
posted @ 2018-09-18 10:37 盆古 阅读(294) 评论(0) 推荐(0) 编辑
摘要: /****************************************************************************** * Compilation: javac Ruler.java * Execution: java Ruler * * Prints the relative lengths of the subdivision... 阅读全文
posted @ 2018-09-18 10:35 盆古 阅读(328) 评论(0) 推荐(0) 编辑
摘要: /****************************************************************************** * Compilation: javac CalISBN.java * Execution: java CalISBN n * * Determines the check digit of an ISBN-10... 阅读全文
posted @ 2018-09-17 19:48 盆古 阅读(148) 评论(0) 推荐(0) 编辑
摘要: /****************************************************************************** * Compilation: javac Int2BinaryString.java * Execution: java Int2Binar 阅读全文
posted @ 2018-09-17 17:20 盆古 阅读(321) 评论(0) 推荐(0) 编辑
摘要: /****************************************************************************** * Compilation: javac PrintNumber.java * Execution: java PrintNumber * * Print the integers from 100 to 200... 阅读全文
posted @ 2018-09-17 16:40 盆古 阅读(470) 评论(0) 推荐(0) 编辑
摘要: /****************************************************************************** * Compilation: javac AllSame.java * Execution: java AllSame a b c * * Prints "The are the same" if a = b = c... 阅读全文
posted @ 2018-09-17 15:41 盆古 阅读(223) 评论(0) 推荐(0) 编辑
摘要: 下面我们来编写第一个java程序,其功能是在控制台上显示“Hello,world!”字符串,程序内容如下: 现在我们来逐条解释这段代码的每个元素。 注释:前面用*号围起来的部分是程序注释,写明了如何编译、运行程序,程序的功能是什么。随手给程序添加注释是一个良好的编程习惯,建议你也学着这样做。 cla 阅读全文
posted @ 2018-09-12 11:59 盆古 阅读(416) 评论(0) 推荐(0) 编辑