1. Trang chủ
  2. » Công Nghệ Thông Tin

bài tập java quản lý thông tin chuyến xe CODE

12 826 0

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

THÔNG TIN TÀI LIỆU

Thông tin cơ bản

Định dạng
Số trang 12
Dung lượng 17,4 KB

Nội dung

Công ty du lich V quản lý thông tin chuyến xe Thông tin loại chuyến xe: Chuyến xe nội thành: Mã số chuyến, họ tên tài xế, số xe, số tuyến, số km được, doanh thu Chuyến xe ngoại thành: Mã số chuyến, họ tên tài xế, số xe, nơi đến, số ngày được, doanh thu Viết chương trình thực yêu cầu sau: Xây dựng lớp có quan hệ thừa kế Nhập, xuất danh sách chuyến xe Tính tổng doanh thu cho loại xe Hướng dẫn: Bước 1: Xây dựng lớp ChuyenXe bao gồm thuộc tính chung loại chuyến xe nội thành ngoại thành mã số chuyến, họ tên tài xế, số xe, doanh thu Bước 2: Xây dựng lớp ChuyenXeNoiThanh kế thừa lớp ChuyenXe có thuộc tính riêng số tuyến, số km Bước 3: Xây dựng lớp ChuyenXeNgoaiThanh kế thừa lớp ChuyenXe có thuộc tính riêng nơi đến, số ngày Bước 4: Xây dựng lớp Main nhập, hiển thị thông tin chuyến xe tính tổng doanh thu cho loại xe ChuyenXe.java package baitapquanlychuyenxe; import java.util.Scanner; public class ChuyenXe { protected String maSoChuyen, hoTenTaiXe, soXe; protected double doanhThu; Scanner scanner = new Scanner(System.in); public ChuyenXe() { super(); this.maSoChuyen = ""; this.hoTenTaiXe = ""; this.soXe = ""; this.doanhThu = 0; } public ChuyenXe(String maSoChuyen, String hoTenTaiXe, String soXe, double doanhThu) { super(); this.maSoChuyen = maSoChuyen; this.hoTenTaiXe = hoTenTaiXe; this.soXe = soXe; this.doanhThu = doanhThu; } public String getMaSoChuyen() { return maSoChuyen; } public void setMaSoChuyen(String maSoChuyen) { this.maSoChuyen = maSoChuyen; } public String getHoTenTaiXe() { return hoTenTaiXe; } public void setHoTenTaiXe(String hoTenTaiXe) { this.hoTenTaiXe = hoTenTaiXe; } public String getSoXe() { return soXe; } public void setSoXe(String soXe) { this.soXe = soXe; } public double getDoanhThu() { return doanhThu; } public void setDoanhThu(double doanhThu) { this.doanhThu = doanhThu; } public void nhapThongTinChuyenXe() { System.out.print("Nhập mã số chuyến: "); maSoChuyen = scanner.nextLine(); System.out.print("Nhập họ tên tài xế: "); hoTenTaiXe = scanner.nextLine(); System.out.print("Nhập số xe: "); soXe = scanner.nextLine(); System.out.print("Nhập doanh thu: "); doanhThu = scanner.nextDouble(); } public String toString() { return "Mã số chuyến: " + this.maSoChuyen + ", họ tên tài xế: " + this.hoTenTaiXe + ", số xe: " + this.soXe + ", doanh thu: " + this.doanhThu; } } ChuyenXeNoiThanh.java package baitapquanlychuyenxe; public class ChuyenXeNoiThanh extends ChuyenXe { private String soTuyen; private double soKmDiDuoc; public ChuyenXeNoiThanh() { super(); } public ChuyenXeNoiThanh(String soTuyen, double soKmDiDuoc) { super(); this.soTuyen = soTuyen; this.soKmDiDuoc = soKmDiDuoc; } public double getSoKmDiDuoc() { return soKmDiDuoc; } public void setSoKmDiDuoc(double soKmDiDuoc) { this.soKmDiDuoc = soKmDiDuoc; } public Scanner getScanner() { return scanner; } public void setScanner(Scanner scanner) { this.scanner = scanner; } public void nhapThongTinChuyenXe() { super.nhapThongTinChuyenXe(); // gọi hàm nhapThongTinChuyenXe() lớp ChuyenXe System.out.print("Nhập số tuyến: "); soTuyen = scanner.nextLine(); System.out.print("Nhập số km được: "); soKmDiDuoc = scanner.nextDouble(); } public String toString() { return super.toString() + ", số tuyến: " + this.soTuyen + ", số km được: " + this.soKmDiDuoc; } } ChuyenXeNgoaiThanh.java package baitapquanlychuyenxe; public class ChuyenXeNgoaiThanh extends ChuyenXe { private String noiDen; private int soNgayDiDuoc; public ChuyenXeNgoaiThanh() { super(); this.noiDen = ""; this.soNgayDiDuoc = 0; } public ChuyenXeNgoaiThanh(String noiDen, int soNgayDiDuoc) { super(); this.noiDen = noiDen; this.soNgayDiDuoc = soNgayDiDuoc; } public String getNoiDen() { return noiDen; } public void setNoiDen(String noiDen) { this.noiDen = noiDen; } public int getSoNgayDiDuoc() { return soNgayDiDuoc; } public void setSoNgayDiDuoc(int soNgayDiDuoc) { this.soNgayDiDuoc = soNgayDiDuoc; } public void nhapThongTinChuyenXe() { super.nhapThongTinChuyenXe(); System.out.print("Nhập nơi đến: "); noiDen = scanner.nextLine(); System.out.print("Nhập số ngày được: "); soNgayDiDuoc = scanner.nextInt(); } public String toString() { return super.toString() + ", nơi đến: " + this.noiDen + ", số ngày được: " + this.soNgayDiDuoc; } } Main.java package baitapquanlychuyenxe; import java.util.ArrayList; import java.util.Scanner; public class Main { public static void main(String[] args) { ArrayList arrChuyenXeNoiThanh = new ArrayList(); ArrayList arrChuyenXeNgoaiThanh = new ArrayList(); int soChuyenNoiThanh, soChuyenNgoaiThanh; double doanhThuXeNoiThanh = 0, doanhThuXeNgoaiThanh = 0; Scanner scanner = new Scanner(System.in); System.out.print("Nhập số chuyến xe nội thành: "); soChuyenNoiThanh = scanner.nextInt(); System.out.print("Nhập số chuyến xe ngoại thành: "); soChuyenNgoaiThanh = scanner.nextInt(); System.out.println("Nhập thông tin chuyến xe nội thành:"); for (int i = 0; i < soChuyenNoiThanh; i++) { System.out.println("Nhập thông tin chuyến xe thứ " + (i + 1) + ":"); ChuyenXeNoiThanh chuyenXeNoiThanh = new ChuyenXeNoiThanh(); chuyenXeNoiThanh.nhapThongTinChuyenX e(); doanhThuXeNoiThanh += chuyenXeNoiThanh.getDoanhThu(); arrChuyenXeNoiThanh.add(chuyenXeNoiTh anh); } System.out.println("Nhập thông tin chuyến xe ngoại thành:"); for (int i = 0; i < soChuyenNgoaiThanh; i++) { System.out.println("Nhập thông tin chuyến xe thứ " + (i + 1) + ":"); ChuyenXeNgoaiThanh chuyenXeNgoaiThanh = new ChuyenXeNgoaiThanh(); chuyenXeNgoaiThanh.nhapThongTinChuye nXe(); doanhThuXeNgoaiThanh += chuyenXeNgoaiThanh.getDoanhThu(); arrChuyenXeNgoaiThanh.add(chuyenXeNgo aiThanh); } System.out.println(" -Thông tin chuyến xe nội thành -"); for (int i = 0; i < arrChuyenXeNoiThanh.size(); i++) { System.out.println(arrChuyenXeNoiThanh.g et(i).toString()); } System.out.println(" -Thông tin chuyến xe ngoại thành -"); for (int i = 0; i < arrChuyenXeNgoaiThanh.size(); i++) { System.out.println(arrChuyenXeNgoaiThanh get(i).toString()); } System.out.println("Doanh thu chuyến xe: "); System.out.println("Doanh thu chuyến xe nội thành: " + doanhThuXeNoiThanh); System.out.println("Doanh thu chuyến xe ngoại thành: " + doanhThuXeNgoaiThanh); } } ... System.out.println("Nhập thông tin chuyến xe thứ " + (i + 1) + ":"); ChuyenXeNgoaiThanh chuyenXeNgoaiThanh = new ChuyenXeNgoaiThanh(); chuyenXeNgoaiThanh.nhapThongTinChuye nXe(); doanhThuXeNgoaiThanh += chuyenXeNgoaiThanh.getDoanhThu();... getHoTenTaiXe() { return hoTenTaiXe; } public void setHoTenTaiXe(String hoTenTaiXe) { this.hoTenTaiXe = hoTenTaiXe; } public String getSoXe() { return soXe; } public void setSoXe(String soXe) { this.soXe... chuyenXeNoiThanh.nhapThongTinChuyenX e(); doanhThuXeNoiThanh += chuyenXeNoiThanh.getDoanhThu(); arrChuyenXeNoiThanh.add(chuyenXeNoiTh anh); } System.out.println("Nhập thông tin chuyến xe ngoại

Ngày đăng: 13/10/2019, 19:24

TỪ KHÓA LIÊN QUAN

TÀI LIỆU CÙNG NGƯỜI DÙNG

TÀI LIỆU LIÊN QUAN

w