自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(8)
  • 收藏
  • 关注

原创 快快快4题试试

import java.util.Scanner; class Stock { String symbol; String name ; double previousClosingPrice; double currentPrice; public Stock(String symbol, String name) { this.symbol = symbol; this.name = name; } doub...

2022-05-18 20:28:30 678

原创 第三题的让你试试这个

import java.util.Scanner; public class t3 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); double[][] m = new double[4][4]; int row = 4, col = 4; for (int i = 0; i < row; i++) { ...

2022-05-18 20:15:06 101

原创 【无标题】新的1111

public class Person { private String name; private String address; private String phone; private String email; public Person() { } public Person(String name, String address, String phone, String email) { this.name = name; ...

2022-05-18 20:14:28 61

原创 编程4444

编程4 public class Stock { String symbol; String name ; double previousClosingPrice; double currentPrice; public Stock(String symbol, String name) { this.symbol = symbol; this.name = name; } double getChangePerce...

2022-05-18 19:43:08 68

原创 编程3答案

编程3 public static double sumMajorDiagonal(double[][] m) { int row = m.length; int col = m[0].length; double sum = 0; for (int i = 0; i < row; i++) { for (int j = 0; j < col; j++) { if (i ==...

2022-05-18 19:35:57 96

原创 选择题答案 没发成功吗?

1-5 ABBBB 6-10 BDDAB

2022-05-18 19:27:53 33

原创 33333

编程1的Test1类改成这个: import java.util.Scanner; public class Test1 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); Child[] children = new Child[3]; String nameChild = sc.next(); String nameToy...

2022-05-18 19:25:41 100

原创 22222

public abstract class Toy { protected String name; public abstract void howToPlay(); protected Toy(String name) { this.name = name; } } class Football extends Toy { private int radius; public Football(String name, int ra...

2022-05-18 19:05:11 116 1

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除