ตัวอย่างโค้ดโปรแกรมการแปลงเลขฐาน 10 เป็นเลขฐาน 2
ตัวอย่างโค้ดโปรแกรมการแปลงเลขฐาน โดยการแปลงเลข 10 เป็นเลขฐาน 2ตัวอย่างโค้ด
import java.util.ArrayList;import java.util.List;
public class JavaCodeExam {
public static void main(String[] args) {
int a10 = 84;
List<Integer> ans = new ArrayList<Integer>();
do{
int bit = a10 % 2;
a10 = a10 / 2;
ans.add(bit);
}while(a10 > 0);
for (int i = ans.size(); i > 0; i--) {
System.err.print(ans.get(i - 1));
}
}
}
ไม่มีความคิดเห็น :
แสดงความคิดเห็น