/** * 创建用户类额 * @author square 凉 * */public class User { private String userName; private String password; private String Name; public String getUserNa ...
分类:
其他好文 时间:
2019-04-26 13:36:41
阅读次数:
104
Three Logos CodeForces - 581D Three companies decided to order a billboard with pictures of their logos. A billboard is a big square board. A logo of ...
分类:
其他好文 时间:
2019-04-22 20:48:15
阅读次数:
145
题目: Given a non-negative integer c, your task is to decide whether there're two integers a and b such that a2 + b2 = c. Example 1: Example 2: 分析: 给定一个 ...
分类:
编程语言 时间:
2019-04-22 00:18:10
阅读次数:
157
E. Packmentime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard outputA game field is a strip of 1?×?n square ...
分类:
其他好文 时间:
2019-04-13 13:56:08
阅读次数:
209
https://leetcode.com/problems/sum-of-square-numbers/ Given a non-negative integer c, your task is to decide whether there're two integers a and b such ...
分类:
其他好文 时间:
2019-04-13 10:41:19
阅读次数:
149
1、无序列表(unordered list) 需要用到的标签:<ul></ul> <li></li> 使用属性:disc(实体圆)、circle(空心圆)、square(方块实体) 效果图: 2、有序列表(ordered list) 需要用到的标签:<ol></ol> <li></li> 效果图: ...
分类:
其他好文 时间:
2019-04-12 00:59:49
阅读次数:
190
(1)定义一个形状类(Shape)方法:计算周长,计算面积子类:矩形类(Rectangle) :额外的方法:differ() 计算长宽差圆形类(Circle)三角形类(Triangle)正方形类(Square) 矩形的子类生成几个不同的形状对象,放在一个Shape类型的数组里,分别求每个形状的周长和 ...
分类:
其他好文 时间:
2019-04-11 16:31:56
阅读次数:
134
Description: Implement int sqrt(int x). Compute and return the square root of x, where x is guaranteed to be a non-negative integer. Since the return ...
分类:
其他好文 时间:
2019-04-09 20:24:04
阅读次数:
148
Two images A and B are given, represented as binary, square matrices of the same size. (A binary matrix has only 0s and 1s as values.) We translate on ...
分类:
其他好文 时间:
2019-04-08 13:24:52
阅读次数:
158
package com.gezhi.interfaces;/** * 新建一个dog类实现接口livingable(狗吃和上厕所都是与生俱来的不应该写成接口) * @author square 凉 * */public class Dog implements Livingable{ private ...
分类:
编程语言 时间:
2019-04-04 09:44:09
阅读次数:
204