โค๊ดตามนี้ครับ
import java.util.*;
public class Project3
{
public static void main(String[] args)
{
Scanner scan = new Scanner(System.in);
int n;
System.out.print("input=> ");
n=scan.nextInt();
System.out.print("Your input is=> "+n);
}
}
คำถามนะครับ ถ้าผู้ใช้กดEnterโดยไม่ใส่ข้อมูลใดๆเลย เราจะทำอย่างไรให้โปรแกรมขึ้นเตือนว่าผู้ใช้ยังไม่ได้ป้อนข้อมูล
ขอบคุณครับ
[ภาษาJAVA]รบกวนสอบถามข้อมูลเกี่ยวกับการรับข้อมูลจาก Keyboard หน่อยครับ
import java.util.*;
public class Project3
{
public static void main(String[] args)
{
Scanner scan = new Scanner(System.in);
int n;
System.out.print("input=> ");
n=scan.nextInt();
System.out.print("Your input is=> "+n);
}
}
คำถามนะครับ ถ้าผู้ใช้กดEnterโดยไม่ใส่ข้อมูลใดๆเลย เราจะทำอย่างไรให้โปรแกรมขึ้นเตือนว่าผู้ใช้ยังไม่ได้ป้อนข้อมูล
ขอบคุณครับ