- HardcoreCppStudy/첫숙제/Overloading/임민수 . . . . 2 matches
if(direction[i-2]=='9' && direction[i-1]=='9' && direction[i]=='9')
if(array[i-2]=='9' && array[i-1]=='9' && array[i]=='9')
- 파스칼삼각형/구자겸 . . . . 2 matches
array[i-1][j-1] = array[i-2][j-2]+array[i-2][j-1];
- Basic알고리즘/팰린드롬/허아영 . . . . 1 match
if(string[i+j] == string[len-i-2+j])
- Counting/김상섭 . . . . 1 match
n[i] += 2*n[i-1] + n[i-2] + n[i-3];
- Counting/문보창 . . . . 1 match
Tn[i] = 2 * Tn[i-1] + Tn[i-2] + Tn[i-3];
- Counting/하기웅 . . . . 1 match
number[i]=2*number[i-1]+number[i-2]+number[i-3];
- HowManyFibs?/문보창 . . . . 1 match
pib[i].findPibNum(pib[i-1], pib[i-2]);
- HowManyFibs?/하기웅 . . . . 1 match
fibNum[i] = fibNum[i-1]+ fibNum[i-2];
- MobileJavaStudy/NineNine . . . . 1 match
dan[i-2] = String.valueOf(i) + " dan";
- 떡장수할머니/강소현 . . . . 1 match
num[i] = num[i-1]+num[i-2];
- 문자반대출력/허아영 . . . . 1 match
*(pCh+lenstr-i-2) = *(temp + i);
- 빵페이지/소수출력 . . . . 1 match
if(count==(i-2))
- 오목/민수민 . . . . 1 match
if(board[i-1][j+1]==temp && board[i-2][j+2]==temp && board[i-3][j+3]==temp && board[i-4][j+4]==temp)
- 피보나치/aekae . . . . 1 match
return fivo(i-1) + fivo(i-2);
- 피보나치/김재성,황재선 . . . . 1 match
return fivo(i-1) + fivo(i-2);
- 피보나치/방선희 . . . . 1 match
arr[i] = arr[i-1] + arr[i-2];
- 피보나치/허아영 . . . . 1 match
for(j = 0; j <= (i-2); j++)
- 피보나치/현정,현지 . . . . 1 match
suyul[i]=suyul[i-2]+suyul[i-1];
Found 18 matching pages out of 7555 total pages (5000 pages are searched)
You can also click here to search title.