Hướng dẫn lập trình cơ bản
0admin posted on 2023/05/14 18:37:52
Phần 2
Hôm nay chúng ta sẽ tìm hiểu những thông tin cơ bản nhất về biến lưu trữ trong lập trình và các loại dữ liệu cơ bản cần thiết khi viết một chương trình.
Các liên kết trong video:
https://www.tutorialspoint.com/java/java_environment_setup.htm
https://www.tutorialspoint.com/online_java_compiler.php
https://www.tutorialspoint.com/online_java_compiler.php
Các đoạn code được trình bày trong video:
public class Main { public static void main(String[] args) { String emp_name; //declare emp_name variable emp_name = "Lan"; //assign the value "Lan" for this variable //we can make a combination declare and assign the value for the variable with one line of code int emp_age = 25; //declare emp_name variable and assign value "25" to the variable //Let's print out the messages System.out.println("Hello " + emp_name); System.out.println("You are "+ emp_age + " years old."); } }