type var1 = value1;
type var1 = value1, varN = valueN;
- type คือชนิดของข้อมูลที่กำหนดให้กับตัวแปร
- varX คือชื่อตัวแปรที่จะตั้ง
- valueX คือค่าของตัวแปรที่ต้องการกำหนดให้
ตัวอย่าง
int number = 25;
int a = 1, b = 2, c = 3;
float real = 99.99;
float point1 = 45.2, point2 = 30;
char choice = 'a';
char ch1 = 'o', ch2 = 'z';
No comments:
Post a Comment