วันเสาร์ที่ 12 กันยายน พ.ศ. 2558

numline 1234567

void setup(){
  int i=0;
  int n=8;
  while(i<n){
    int re=n-i;
    numline(re);
    i++;
  }
}

void numline(int n){
  int i=1;
  while (i<=n){
   print(i+" "); 
   i++;
  }
  println();
}

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

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

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

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