自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 java第7次作业

public static void main(String[] args) { File file = new File("D:\\"); cha(file); } private static void cha(File src) { File[] files = src.listFiles(); if (files != null) { for (File file : files) { if (file.isDirector...

2021-12-06 20:56:47 162

原创 java第6次作业

public class test extends Thread{ public static void main(String[] args) throws IOException { int port = 10000; String name; MulticastSocket ms = new MulticastSocket(port); Scanner sc = new Scanner(System.in); I...

2021-12-04 22:14:23 99

原创 java第5次作业

public class yonhu1 { public static void main(String[] args){ yonhu1 yh1 = new yonhu1(); new Thread(() -> { yh1.receive(); }).start(); new Thread(() -> { yh1.send(); }).start(); ...

2021-12-04 21:54:53 71

原创 java第4次作业

public static void main(String[] args) throws SQLException { getconn(); String selectsql="select * from info"; (所有查询代码为: select * from info where tel like '?%'; select * from info where sex=?; select * from info where tel like '?%'; select * from ...

2021-12-04 21:24:14 92

原创 java第3次作业

public enum meiju { WS1,WS2,special,expert,common,nb } public class meiju2 { public static void doit(meiju a) { switch(a) { case WS1: System.out.println("车间号为WS1的员工工号有:W1,W2,W3,W4,W5,W6,W7"); break; c...

2021-12-04 20:55:03 287

原创 java第二次作业

public interface baba { public void somking(); public void fishing(); } public interface mama { public void watchTv(); public void cooking(); } public class babaandmama implements baba,mama{ @Override public void watchTv() { ...

2021-12-04 20:39:15 301

原创 Java作业1

第一题 int a,b; for( a=2;a<101;a++) { for(b=2;b<=a/2;b++) { if(a%b==0) break; } if (b>a/2) { System.out.print(a); } System.out.println(); } 第二题 int a,b; for( a=2;a<101...

2021-09-10 11:35:26 65

空空如也

空空如也

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

TA关注的人

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