วันอาทิตย์ที่ 6 กันยายน พ.ศ. 2558

Lab04 : Summation

void setup() {
  println(summ(10));
}


int summ(int i) {
  int sum=0;
  for (int x=1;x<=i;x++){
    sum+=x;
  }
  return sum;
}


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

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

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

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