สอนภาษา Java เขียนโปรแกรมแสดงแม่สูตรคูณ ด้วยคำสั่ง while loop โดยตัวอย่างจะมีการรับค่าตัวเลขแม่สูตรคูณจากผู้ใช้งาน และนำตัวเลขมาวนลูปด้วย while พร้อมกับแสดงแม่สูตรคูณออกสู่หน้าจอ สามารถเขียนโปรแกรมได้ดังนี้
ตัวอย่าง Java แม่สูตรคูณ ด้วยคำสั่ง while loop
import java.util.*;
class Test {
public static void main(String args[]){
Scanner sc = new Scanner( System.in );
System.out.print("กรุณากรอกแม่สูตรคูณ : ");
int b = sc.nextInt();
int i = 1;
while( i<=12 ) {
System.out.println( b+" x "+i+" = "+( b * i ) );
i++;
}
}
}
ผลลัพธ์
กรุณากรอกแม่สูตรคูณ : 12
12 x 1 = 12
12 x 2 = 24
12 x 3 = 36
12 x 4 = 48
12 x 5 = 60
12 x 6 = 72
12 x 7 = 84
12 x 8 = 96
12 x 9 = 108
12 x 10 = 120
12 x 11 = 132
12 x 12 = 144