วันจันทร์ที่ 7 กันยายน พ.ศ. 2558

Lab04 : Multiplication Table

void setup() {
  multable(0, 12, 5);
}

void multable(int i, int row, int N) {
  while (i<=row) {
    int mul = N * i ; 
    println( +N+ " * " + i + " = " +mul) ;
    i += 1 ;
  }
}


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

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

commit เพิ่มเติม : เพื่ม userstory, bookmark

>>  add userstory ทำการเพิ่ม userstory ใน functional tests >>  add bookmark for user เพิ่มระบบ Bookmark โดยการสร้าง model ขึ...