上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 25 下一页
摘要: <!--学习链接http://www.w3school.com.cn/css3/index.asp--> 笔记基础 *css 层叠样式表 ①层叠 一层又一层 ②样式表 多个的属性和属性值 作用:将网页内容和显示样式进行分离,提高了显示效果 *css与html的四种结合方式 (1)在每个html标签上 阅读全文
posted @ 2019-03-04 08:59 Moliay 阅读(13) 评论(0) 推荐(0)
摘要: //原题链接https://leetcode.com/problems/third-maximum-number/ 题目描述 Given a non-empty array of integers, return the third maximum number in this array. If 阅读全文
posted @ 2019-03-03 12:58 Moliay 阅读(10) 评论(0) 推荐(0)
摘要: 笔记篇 1.html的操作思想:网页中有很多数据,不同的数据可能需要不同的显示效果,这个时候需要使用标签把要操作的数 据据包起来(封装起来),通过修改标签的属性值实现标签内数据样式的变化,只需要改变容器的属性值,就可 以实现容器内数据样式的变化。 一个标签相当于一个容器,想要修改容器内数据的样式,只 阅读全文
posted @ 2019-03-03 11:49 Moliay 阅读(20) 评论(0) 推荐(0)
摘要: 下载 JDK下载地址https://www.oracle.com/technetwork/java/javase/downloads/index.html 然后同意,选择自己适合的版本 PS: 1.zip的绿色版不用安装,不会提醒你一直升级,不要了就直接删掉,但是可能会缺少丢丢功能 所以绿色版.zi 阅读全文
posted @ 2019-03-01 12:31 Moliay 阅读(514) 评论(0) 推荐(0)
摘要: //原题链接https://leetcode.com/problems/ipo/ 题目描述 Suppose LeetCode will start its IPO soon. In order to sell a good price of its shares to Venture Capital 阅读全文
posted @ 2019-02-26 23:17 Moliay 阅读(17) 评论(0) 推荐(0)
摘要: //原题链接https://leetcode.com/problems/my-calendar-iii/submissions/ 题目描述 Implement a MyCalendarThree class to store your events. A new event can always b 阅读全文
posted @ 2019-02-25 09:26 Moliay 阅读(20) 评论(0) 推荐(0)
摘要: package javaPractice; //2是第一个素数,3是第二个素数,则第100001个素数是多少 //思路:把每个素数的倍数扔掉 public class Contest21 { public static void main(String[] args) { int n = 10000 阅读全文
posted @ 2019-02-24 10:39 Moliay 阅读(21) 评论(0) 推荐(0)
摘要: 设 A rem B || A mod B 生成机制 取余:采取fix()函数,向0方向取整 取模:采取floor()函数,向无穷小方向取整当A,B异号时(其实同号也是这个规律…) 取余:结果和A同号 取模:结果和B同号 eg: 1.①5 mod 2 = 1 ②5 rem 2 = 1 ③-5 mod 阅读全文
posted @ 2019-02-23 21:19 Moliay 阅读(66) 评论(0) 推荐(0)
摘要: public class Main { public static void main(String[] args){ System.out.println("yes"); } } 谁说程序员不幽默~ 阅读全文
posted @ 2019-02-23 16:07 Moliay 阅读(8) 评论(0) 推荐(0)
摘要: package javaPractice; /* * 啤酒每罐2.3元,饮料每罐1.9元。小明买了若干啤酒和饮料,一共花了82.3元。 我们还知道他买的啤酒比饮料的数量少,请你计算他买了几罐啤酒。 注意:答案是一个整数。请通过浏览器提交答案。 不要书写任何多余的内容(例如:写了饮料的数量,添加说明文 阅读全文
posted @ 2019-02-23 12:20 Moliay 阅读(10) 评论(0) 推荐(0)
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 25 下一页