public class Value {
public static void main(String[] args) {
int x;
int xLimit;
// Assign values to x and xLimit
x = 1; // ค่าเริ่มต้นของ x
xLimit = 5; // ค่า xLimit
// While loop
while (x <= xLimit) {
x++; // เพิ่มค่า x ก่อน
System.out.printf("The value of x is %d\n", x);
}
// Print the final value of x
System.out.printf("The final value of x is %d\n", x);
}
}