Computer Fundamental
วันอาทิตย์ที่ 13 กันยายน พ.ศ. 2558
multiplication_table_lab4
void setup(){
multiplication_table(2);
}
void multiplication_table(int num){
int count=0;
while(count<12){
count++;
println(num+" * "+count+" = "+num*count);
}
}
ไม่มีความคิดเห็น:
แสดงความคิดเห็น
‹
›
หน้าแรก
ดูเวอร์ชันสำหรับเว็บ
ไม่มีความคิดเห็น:
แสดงความคิดเห็น