วันอังคารที่ 11 กุมภาพันธ์ พ.ศ. 2557

ตัวอย่างโค้ดโปรแกรมแปลงตัวเลข 0 - 9 เป็นคำภาษาไทย

ตัวอย่างโค้ดโปรแกรมแปลงตัวเลข 0 - 9 เป็นคำภาษาไทย

ตัวอย่างนี้เป็นตัวอย่างโค้ดในการแปลงตัวเลขจากเลข 0-9 ให้เป็นคำภาษาไทย

ตัวอย่างโค้ด

public class JavaCodeExam {
public static void main(String[] args) throws Exception {
for (int i = 0; i < 9; i++) {
System.out.println(i + " Text is " + digit2text(i));
}
}

public static String digit2text(int digit) {
String text = "";
if (digit == 0)
text = "ศูนย์";
else if (digit == 1)
text = "หนึ่ง";
else if (digit == 2)
text = "สอง";
else if (digit == 3)
text = "สาม";
else if (digit == 4)
text = "สี่";
else if (digit == 5)
text = "ห้า";
else if (digit == 6)
text = "หก";
else if (digit == 7)
text = "เจ็ด";
else if (digit == 8)
text = "แปด";
else if (digit == 9)
text = "เก้า";
else
text = "";
return text;
}
}

ผลลัพธ์ที่ได้

0 Text is ศูนย์
1 Text is หนึ่ง
2 Text is สอง
3 Text is สาม
4 Text is สี่
5 Text is ห้า
6 Text is หก
7 Text is เจ็ด
8 Text is แปด

yengo หรือ buzzcity

ไม่มีความคิดเห็น :

แสดงความคิดเห็น