สอนภาษา Java เขียนโค้ดบวกเลข โดยรับค่าตัวแปรชนิดตัวเลข (Integer) จากผู้ใช้งาน 2 ตัวด้วยคำสั่ง nextInt จาก Class Scanner และพิมพ์ผลลัพธ์ของการบวกเลขจากตัวแปรทั้ง 2 ออกสู่หน้าจอ สามารถเขียนโปรแกรมได้ดังนี้
ตัวอย่าง โค้ด Java บวกเลข จากตัวแปรตัวเลข 2 ตัว
import java.util.*;
class Test {
public static void main(String args[]){
Scanner sc = new Scanner( System.in );
System.out.print("กรอกตัวเลขที่ 1 : ");
int number1 = sc.nextInt();
System.out.print("กรอกตัวเลขที่ 2 : ");
int number2 = sc.nextInt();
if( number1 > 0 && number2 > 0 ) {
int total = number1 + number2;
System.out.print( number1+" + "+number2+" = "+total );
}
}
}
ผลลัพธ์
กรอกตัวเลขที่ 1 : 9
กรอกตัวเลขที่ 2 : 9
9 + 9 = 18
1. import class java.util.* เพื่อใช้งาน Class Scanner สำหรับรับค่าตัวเลขจากผู้ใช้งาน
2. รับค่าตัวเลขที่ 1 เก็บไว้ที่ตัวแปร number1 และรับค่าตัวเลขที่ 2 เก็บไว้ที่ตัวแปร number2 โดยรับค่าด้วยคำสั่ง nextInt
3. นำตัวแปร number1 + number2 และเก็บผลลัพธ์ไว้ที่ตัวแปร total พร้อมกับแสดงผลตัวแปรทั้ง 3 ออกสู่หน้าจอ