Codejava

Page 1

LẬP TRÌNH JAVA

1

Trung Tâm Đào Tạo Tin Học Khoa Phạm | Lưu Hành Nội Bộ


int a = 3; if (a>=5) { // đúng }else{ // sai }

int thang = 2; String chuoi; switch (thang) { case 1: chuoi = break; case 2: chuoi = break; case 3: chuoi = break; default: chuoi = }

import java.util.ArrayList; // Tạo mảng ArrayList<String> mang = new ArrayList<>(); // Thêm phần tử mang.add("iOS"); mang.add("Android"); mang.add("PHP"); mang.add("Unity"); // Xóa phần tử mang.remove(2); // Đếm số phần tử (Đếm từ 1) System.out.println("So pt: " + mang.size() ); // Truy cập phần tử (Đếm từ 0) System.out.println("Phan tu thu 2: " + mang.get(2) ); // Duyệt mảng for ( String s : mang ){ System.out.println( s ); }

2

Trung Tâm Đào Tạo Tin Học Khoa Phạm | Lưu Hành Nội Bộ

"Thang 1"; "Thang 2"; "Thang 3"; "Khong xac dinh";


3

Trung Tâm Đào Tạo Tin Học Khoa Phạm | Lưu Hành Nội Bộ


Turn static files into dynamic content formats.

Create a flipbook
Issuu converts static files into: digital portfolios, online yearbooks, online catalogs, digital photo albums and more. Sign up and create your flipbook.