码迷,mamicode.com
首页 >  
搜索关键字:largest rectangle in    ( 2497个结果
2020.4.19
package lei; import java.util.Scanner; public class Rectangle { int length; int width ; int showAll; public static void main(String[] args) { // TODO ...
分类:其他好文   时间:2020-04-19 15:10:29    阅读次数:71
2020-4-19
package hm_4_19; public class Rectangle { public int length ; public int width; public Rectangle(int length, int width) { super(); this.length = lengt ...
分类:其他好文   时间:2020-04-19 12:59:27    阅读次数:44
第九次java
定义一个矩形类Rectangle:(知识点:对象的创建和使用)1 定义三个方法:getArea()求面积、getPer()求周长,showAll()分别在控制台输出长、宽、面积、周长。2 有2个属性:长length、宽width3 创建一个Rectangle对象,并输出相关信息 定义方法: pack ...
分类:编程语言   时间:2020-04-19 10:37:32    阅读次数:71
JAVA.10
!!!!定义一个矩形类Rectangle:(知识点:对象的创建和使用) 1 定义三个方法:getArea()求面积、getPer()求周长,showAll()分别在控制台输出长、宽、面积、周长。 2 有2个属性:长length、宽width 3 创建一个Rectangle对象,并输出相关信息 pac ...
分类:编程语言   时间:2020-04-18 23:20:21    阅读次数:110
JAVA10
package work; public class Rectangle { int length; int width; public void showAll() { System.out.println("矩形长为:" + length + "矩形宽为:" + width); } public ...
分类:编程语言   时间:2020-04-18 20:08:08    阅读次数:78
HDoj 2056 Rectangles
Problem Description Given two rectangles and the coordinates of two points on the diagonals of each rectangle,you have to calculate the area of the in ...
分类:其他好文   时间:2020-04-15 13:51:02    阅读次数:82
CF-281C Rectangle Puzzle(凸包+面积)
题意:https://codeforces.com/problemset/problem/281/C 就存个模板 1 #define IOS ios_base::sync_with_stdio(0); cin.tie(0); 2 #include <cstdio>//sprintf islower ...
分类:其他好文   时间:2020-04-12 22:43:43    阅读次数:72
HDoj 2052 Picture
Problem Description Give you the width and height of the rectangle,darw it. Input Input contains a number of test cases.For each case ,there are two n ...
分类:其他好文   时间:2020-04-11 23:29:43    阅读次数:97
Leetcode 215、数组中第k个最大的元素
题目链接:kth-largest-element-in-an-array 方法1: 使用快速排序。 1、对数组进行partition,从left到right随机选择一个主元pivot,将pivot与left的元素交换位置。 另索引 j 初始为left,扫描从left + 1到right的元素,若小于 ...
分类:编程语言   时间:2020-04-11 20:20:18    阅读次数:73
ArcGIS Pro改变光标
public CustomMapTool() { IsSketchTool = true; SketchType = SketchGeometryType.Rectangle; SketchOutputMode = SketchOutputMode.Map; //A custom cursor fi ...
分类:其他好文   时间:2020-04-11 09:52:41    阅读次数:104
2497条   上一页 1 ... 7 8 9 10 11 ... 250 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!