2020.4.19
Posted yyyyym
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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 Auto-generated method stub Rectangle R = new Rectangle(); Scanner input = new Scanner(System.in); System.out.println("请输入长:"); R.length = input.nextInt(); System.out.println("请输入宽:"); R.width = input.nextInt(); R.showAll(); } }
package lei; public class Rectangle { int length; int width; public void getArea() { System.out.println(length * width); } public void getPer() { System.out.println((length + width) * 2); } public void showAll() { System.out.println("长:" + length); System.out.println("宽:" + width); System.out.print("面积:"); getArea(); System.out.print("周长"); getPer(); } }
以上是关于2020.4.19的主要内容,如果未能解决你的问题,请参考以下文章