IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Java知识库 -> Java期末大题 -> 正文阅读

[Java知识库]Java期末大题

Java期末

大题部分

第一题:多线程
package kaoshi;

public class SellTicket {
	public static void main(String[] args) {
		Ticket ticket=new Ticket();
		new Thread(ticket,"一号窗口").start();
		new Thread(ticket,"二号窗口").start();
		new Thread(ticket,"三号窗口").start();
		new Thread(ticket,"四号窗口").start();
		new Thread(ticket,"五号窗口").start();
	}

}
class Ticket implements Runnable{
	private int ticket=100;
	
	public void run() {
		this.sell();
	}
	public synchronized void sell() {
		while (true) {
			if (ticket<1) {
				System.out.println("票卖完了!");
				System.exit(0);
			}
			System.out.println(Thread.currentThread().getName()+"卖出第"+(ticket--)+"张票");
			
			try {
				Thread.sleep(100);
				notifyAll();
				wait();
			} catch (InterruptedException e) {
				// TODO: handle exception
				e.printStackTrace();
			}
			
		}
	}
	
}
第二题:文件读写
package kaoshi;

import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;


public class FileRead {
	public static void main(String[] args) throws IOException {
		BufferedReader read = null;
		BufferedWriter out = null;
		try {
			read=new BufferedReader(new FileReader("a.txt"));
			out=new BufferedWriter(new FileWriter("b.txt"));
			String r;
			while((r=read.readLine())!=null)
			{
				String w=null;
				String[] reads = r.split("");
				w=reads[0]+"+"+reads[1]+"="+(Integer.parseInt(reads[0])+Integer.parseInt(reads[1]));
				out.write(w+"\r\n");
			}
			
		} catch (IOException e) {
			// TODO 自动生成的 catch 块
			e.printStackTrace();
		}finally {
			read.close();
			out.close();
		}
		
	}
}

第三题:Point和Circle类
package kaoshi;

public class PointAndCircle {
	public static void main(String[] args) {
		Point point=new Point(1, 1);
		Circle cirlce=new Circle(1, 1, 1);
		System.out.println(point.getDistance(2, 2));
		System.out.println(cirlce.getArea());
	}

}
class Point{
	private double x;
	private double y;
	public Point(double x,double y) {
		this.x=x;
		this.y=y;
	}
	public void setX(double x){
		this.x=x;
	}
	public void setY(double y){
		this.y=y;
	}
	public double getX() {
		return this.x;
	}
	public double getY() {
		return this.y;
	}
	public double getDistance(double x,double y){
		return Math.sqrt(Math.pow(this.x-x,2)+Math.pow(this.y-y, 2));
	}
}
class Circle extends Point{
	private double r;
	public Circle(double x, double y,double r) {
		super(x, y);
		this.r = r;
	}
	public double getR() {
		return r;
	}
	public void setR(double r) {
		this.r = r;
	}
	public Point getPoint() {
		return new Point(super.getX(),super.getY());
	}
	public double getArea() {
		return Math.PI*this.r*this.r;
	}
}
第四题:Rect类和梯形类
class Rect{
	private double len;
	private double width;
	public Rect(double len,double width) {
		this.len=len;
		this.width=width;
	}
	public double getArea() {
		return this.len*this.width;
	}
	public double getLen() {
		return this.len*2+2*this.width;
	}
}
class Tixing{
	private double slen;
	private double xlen;
	private double high;
	public Tixing(double slen, double xlen, double high) {
		this.slen = slen;
		this.xlen = xlen;
		this.high = high;
	}
	public double getArea() {
		return (this.slen+this.xlen)*this.high/2;
	}
}
第五题:最大公约数最小公倍数
package kaoshi;

import java.time.chrono.MinguoChronology;
import java.util.Scanner;

public class MaxAndMin {
	public static int Max(int a,int b) {
		while(b!=0) {
            int i=a%b;
            a=b;
            b=i;
        }
		return a;
	}
	public static int Min(int a,int b) {
		int i;
		for(i=a>b?a:b;i<=a*b;i++)
		{
			if (i%a==0&&i%b==0) {
                break;
			}
		}
		return i;
	}
	public static void main(String[] args) {
		 Scanner scanner=new Scanner ( System.in );
	     int a=scanner.nextInt ();
	     int b=scanner.nextInt ();
	     System.out.println(Min(a,b));
	     System.out.println(Max(a,b));
	}
}

第六题:手机以及固话号码正则表达式(暂定)
package kaoshi;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class PatternAndMatcher {
	public static void main(String[] args) {
		 Pattern p1=null;
		 Matcher m=null;
		 String phonenum="17249231180 17369237180xxd1736-00092371801236-01202237180";
		 p1=Pattern.compile("([1][0-9]{10})|([0-9]{4}-[0-9]{10})");
		 m=p1.matcher(phonenum);
		 while(m.find())
		 {
			 //System.out.println(1);
			 System.out.println(m.group());
		 }
		 //System.out.println(1);
	}
}
  Java知识库 最新文章
计算距离春节还有多长时间
系统开发系列 之WebService(spring框架+ma
springBoot+Cache(自定义有效时间配置)
SpringBoot整合mybatis实现增删改查、分页查
spring教程
SpringBoot+Vue实现美食交流网站的设计与实
虚拟机内存结构以及虚拟机中销毁和新建对象
SpringMVC---原理
小李同学: Java如何按多个字段分组
打印票据--java
上一篇文章      下一篇文章      查看所有文章
加:2021-11-23 12:12:19  更:2021-11-23 12:13:31 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 2:55:58-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码