public class Var {
public static void main(String[] args) {
String str = "hello world";
int i = 100103345;
char c = 'a';
short sh = 23000;
byte bt = 100;
long l = 91780431087564l;
float f = 200.34f;
double d = 470987.546;
boolean b = true;
System.out.println("str =" +str);
System.out.println("i =" +i);
System.out.println("c =" +c);
System.out.println("sh =" +sh);
System.out.println("bt =" +bt);
System.out.println("l =" +l);
System.out.println("f =" +f);
System.out.println("d =" +d);
System.out.println("b =" +b);
}
}
ตัวแปรคืออะไร ?
ตัวแปร เรียกว่า variable
variable ก็คือ สิ่งที่ใช้เก็บข้อมูลไว้ในตัวมัน
ชนิดข้อมูล เรียกว่า data type
data type ก็คือ ตัวที่บ่งบอกว่าข้อมูลที่เก็บคือประเภทไหน
ตัวแปร เรียกว่า variable
variable ก็คือ สิ่งที่ใช้เก็บข้อมูลไว้ในตัวมัน
ชนิดข้อมูล เรียกว่า data type
data type ก็คือ ตัวที่บ่งบอกว่าข้อมูลที่เก็บคือประเภทไหน
ไม่มีความคิดเห็น:
แสดงความคิดเห็น