Đề bài: Viết chương trình 1 lớp chính và một lớp trong thực hiện các công việc sau: + 100 bội số đầu tiên # 0 và chia hết cho 5 + 100 số tận cùng = 3; + Từ 1 đến 100 bội số của nó chia hết cho 12 CODE: Select All /** To change this license header, choose License Headers in Project Properties.* To change this template file, choose Tools | Templates* and open the template in the editor.*/package bai2;/**** @author TRANVANCUONG*/public class Bai2 { /** * @param args the command line arguments */ class loptrong { int dem = 1, i = 0; public void y1() { do { i = i + 5; System.out.print(" " + i); dem = dem +1; } while (dem <= 100); } public void y2() { int dem = 1, i = 0; do { System.out.print(" " + i + "3"); i = i + 1; dem = dem + 1; } while (dem <= 100); } public void y3() { long bp; for (int i = 1;i <= 100; i++) { bp = i * i; if (bp % 12 == 0) { System.out.print(" " + i); } } } } public static void main(String[] args) { Bai2 lop = new Bai2(); Bai2.loptrong in = lop.new loptrong(); System.out.print("Bai 2 cau a:"); in.y1(); System.out.println(""); System.out.print("Bai 2 cau b:"); in.y2(); System.out.println(""); System.out.print("Bai 2 cau c:"); in.y3(); System.out.println(""); }}