码迷,mamicode.com
首页 >  
搜索关键字:rectangle    ( 1383个结果
Java_20.04.22
定义一个矩形类Rectangle:(知识点:对象的创建和使用)1 定义三个方法:getArea()求面积、getPer()求周长,showAll()分别在控制台输出长、宽、面积、周长。2 有2个属性:长length、宽width3 创建一个Rectangle对象,并输出相关信息 package ff ...
分类:编程语言   时间:2020-04-22 10:04:17    阅读次数:74
第七周JAVA
定义一个矩形类Rectangle:(知识点:对象的创建和使用)1 定义三个方法:getArea()求面积、getPer()求周长,showAll()分别在控制台输出长、宽、面积、周长。2 有2个属性:长length、宽width3 创建一个Rectangle对象,并输出相关信息 public cla ...
分类:编程语言   时间:2020-04-20 16:07:27    阅读次数:75
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
1383条   上一页 1 ... 4 5 6 7 8 ... 139 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!