- ScheduledWalk/석천 . . . . 8 matches
board[_2to1(i,j,maxCol)] = 0;
board[_2to1(i,j,maxCol)] = 0;
if (board[_2to1(i,j,maxCol)] <= 0) return false;
board[_2to1(i,j,maxCol)] = 0;
board[_2to1(i,j,maxCol)] = 0;
if (board[_2to1(i,j,maxCol)] <= 0) return false;
board[_2to1(i,j,maxCol)] = 0;
board[_2to1(i,j,maxCol)] = 0;
- 새싹교실/2012/AClass/2회차 . . . . 8 matches
int i,j;
int i,j;
int i,j;
return i,j;
int i,j,temp;
int i,j;
int i,j;
int i,j;
- 새싹교실/2013/록구록구/4회차 . . . . 6 matches
int i,j;
int i,j;
printf("%d*%d =%d\n", i,j,i*j);
int i,j;
int i,j;
printf("%d x %d = %d\n ",i,j,i*j);
- 3N+1Problem/1002_2 . . . . 5 matches
def createTable(self,i,j):
return [self.value(each) for each in range(i,j)]
def maxCycleLengthInRange(self,i,j):
#return max(self.createTable(i,j))
for each in range(i,j):
- SoJu/숙제제출 . . . . 5 matches
int i,j;
printf("%d X %d = %d\n",i,j,i*j);
printf(" %d x %d = %d \n",j,i,j*i);
int i,j;
printf("%d*%d=%d\n",i,j,i*j);
- 새싹교실/2012/사과나무 . . . . 5 matches
int i,j,k=0;
printf("%d * %2d = %3d\t",i,j,i*j);
printf("%d * %2d = %3d\t",i,j,i*j);
printf("%d * %2d = %3d\n",i,j,i*j);
printf("%d * %2d = %3d\n",i,j,i*j);
- 새싹교실/2012/주먹밥 . . . . 5 matches
swap(i,j);
printf("%d %d\n",i,j);
printf("%d %d\n",i,j);
int i,j,Input;
int i,j,sum = 0, fact =1;
- 데블스캠프2013/다섯째날/구구단 . . . . 4 matches
int i,j;
recur2(i,j);
printf("%dx%d = %d ",i,j,i*j);
recur2(i,j+1);
- 새싹교실/2011/씨언어발전/4회차 . . . . 4 matches
int menu,i,j;
case 1 : sum(i,j);break;
case 2 : mul(i,j);break;
case 3 : div(i,j);break;
- 새싹교실/2012/AClass/5회차 . . . . 4 matches
int i,j;
int i,j;
int i,j;
printf("%d*%d=%d ",j,i,j*i);
- 큰수찾아저장하기/김영록 . . . . 4 matches
int i,j;
printf("input[%d][%d] = ",i,j);
int max=0,i,j;
int i,j;
- Pairsumonious_Numbers/김태진 . . . . 3 matches
int x,i,j,flag=0,k;
int i,j,k=0;
int i,j,k;
- TFP예제/Omok . . . . 3 matches
self.assertEquals (self.dolboard.GetDol(i,j) , DolEmpty)
self.boardArray[(i,j)] = 9
dol = "%s" % self.boardArray[(i,j)]
- 복/숙제제출 . . . . 3 matches
printf("%d*%d=%d\n",i,j,i*j);
int kor[5], math[5], eng[5], sum[5]={0,}, i,j;
int i,j;
- 새싹교실/2011/데미안반 . . . . 3 matches
int i,j,h;
int i,j;
int i,j,h;
- 새싹교실/2011/쉬운것같지만쉬운반/2011.4.6 . . . . 3 matches
int i,j;
printf("%d*%d=%d\n",i,j,a);
int i,j;
- 새싹교실/2012/AClass/3회차 . . . . 3 matches
int i,j,k=1;
int i,j;
int a[4][4],b[4][4],c[4][4],d[4][4]={0},i,j,k,l;
- 새싹교실/2012/AClass/4회차 . . . . 3 matches
int i,j;
int i,j;
int i,j;
- 큰수찾아저장하기/김태훈zyint . . . . 3 matches
int i,j;
int i,j,max;
int i,j;
- 파스칼삼각형/윤종하 . . . . 3 matches
int i,j;
for(j=0;j<=i;j++) cout<<combi(i,j)<<" ";
print combi(i,j),
- AcceleratedC++/Chapter6 . . . . 2 matches
ret.push_back(string(i,j)); // 그만큼의 문자열엘 벡터에 넣음
* 5장에서는 string(i,j) 대신에, substr이라는 함수를 이용했었는데, 이번에 쓰지 않은 이유는 substr은 반복자를 인자로 받지 않기 떄문이다.
- EightQueenProblem/lasy0901 . . . . 2 matches
int i,j;
int i,j;
- EightQueenProblem/이덕준소스 . . . . 2 matches
int i,j;
if (!WellPutted(i,level,queens)) //if (!WellPutted(i,j,queens))
- EightQueenProblem/임인택 . . . . 2 matches
int i,j;
int i,j;
- EightQueenProblem/임인택/java . . . . 2 matches
int i,j;
int i,j;
- JavaScript/2011년스터디/윤종하 . . . . 2 matches
var i,j;
for(j=0;j<=i;j++) documnet.write(combi(i,j)+" ");
- MatrixAndQuaternionsFaq . . . . 2 matches
i,j 0,3
j,i det M i,j
- One/구구단 . . . . 2 matches
int i,j;
printf("%d * %d = %d\n",i,j,i*j);
- RandomWalk/임인택 . . . . 2 matches
int i,j;
int i,j;
- XOR삼각형/이태양 . . . . 2 matches
int i,j;
int i,j;
- 구구단/하나조 . . . . 2 matches
printf("%d * %d = %d\n",i,j,k);
printf("%d*%d=%d\n",i,j,k);
- 김희성/MTFREADER . . . . 2 matches
unsigned __int64 point,i,j,k,temp;
long i,j,k;
- 김희성/리눅스계정멀티채팅2차 . . . . 2 matches
int i,j,k;
int i,j;
- 덜덜덜/숙제제출페이지 . . . . 2 matches
int i,j;
printf(%d*%d=%dn", i,j,i*j);
- 데블스캠프2006/월요일/연습문제/for/김대순 . . . . 2 matches
int i,j;
int i,j;
- 데블스캠프2009/월요일/연습문제/svn코드레이스/박준호 . . . . 2 matches
void main(){int n,i,j;scanf("%d",&n);for(i=0;i<n;i++){for(j=0;j<n;j++){(i==0||i==n-1)?printf("*"):((j==0||j==n-1)?printf("*"):printf(" "));}puts("");}}
int n,i,j,k;
- 마름모출력/임다찬 . . . . 2 matches
int k,i,j,byun;
int i,j,k;
- 새싹교실/2011/무전취식/레벨11 . . . . 2 matches
int i,j;
int i,j;
- 새싹교실/2012/AClass/1회차 . . . . 2 matches
int i,j;
int i,j;
- 새싹교실/2012/아우토반/앞반/4.5 . . . . 2 matches
int i,j;
int i,j;
- 새싹교실/2012/해보자 . . . . 2 matches
int i,j;
int i,j;
- 새싹교실/2013/라이히스아우토반/2회차 . . . . 2 matches
int i,j,k,l,m;
int i,j; // for문을 돌리기 위한 인덱스용 변수.
- 손동일 . . . . 2 matches
int i,j,k;
cout << "시작점과 끝점을 입력해주세요(a,b,c,d,e,f,g,h,i,j,z) : " << endl;
- 수/별표출력 . . . . 2 matches
int i,j,k;
int i,j,k;
- 오목/인수 . . . . 2 matches
if( omok.getState(i,j) == Omok.BLACK )
else if( omok.getState(i,j) == Omok.WHITE )
- 윤종하/지뢰찾기 . . . . 2 matches
int iNumOfMine,iCurrentFindedMine=0,iNumOfLeftCell,iIsAlive=TRUE,tempX,tempY,iFindedRealMine=0,i,j;
int i,j;
- 조동영 . . . . 2 matches
int num,i,j,k;
int num,i,j,k;
- 파스칼삼각형/이태양 . . . . 2 matches
int i,j;
int i,j;
- 파스칼삼각형/허아영 . . . . 2 matches
int i,j;
int i,j;
- 3DGraphicsFoundationSummary . . . . 1 match
* 벡터의 외적을 행렬로 표시하기(i,j,k는 각각 x,y,z방향의 단위벡터)
- 3N+1Problem/황재선 . . . . 1 match
i,j = map(int,raw_input().split())
- 3n+1Problem/김태진 . . . . 1 match
int i,j,max=0,n=1,k,b,c;
- 5인용C++스터디/더블버퍼링 . . . . 1 match
int i,j;
- 8queen/손동일 . . . . 1 match
int i,j;
- ACM_ICPC/2013년스터디 . . . . 1 match
* Longest increasing subsequence : DAG로 바꾼다.(increasing하는 곳에만 edge생성됨) 이후 가장 많이 방문하도록 L(j) = 1+ max{L(i) : (i,j)}수행
- A_Multiplication_Game/김태진 . . . . 1 match
int i,j;
- AncientCipher/정진경 . . . . 1 match
int i,j;
- BusSimulation/태훈zyint . . . . 1 match
int i,j; //iterator
- C++스터디_2005여름/학점계산프로그램/정수민 . . . . 1 match
int i,j;
- ChocolateChipCookies/허준수 . . . . 1 match
int i,j;
- CuttingSticks/하기웅 . . . . 1 match
int i,j,k,stickNum;
- DataStructure/Graph . . . . 1 match
* A(k)[i, j] = min { A(k-1)[i,j], A(k-1)[i, k] + A(k-1)[k, j] }
- EightQueenProblem/강석천 . . . . 1 match
self.boardArray[(i,j)] = 0
- EightQueenProblem/정수민 . . . . 1 match
int i,j;
- FOURGODS/김태진 . . . . 1 match
int i,j,k,num;
- HanoiProblem/상협 . . . . 1 match
int inout(int i, int j) // 1,2,3중에서 i,j (1,2,3중 하나인 숫자)가 아닌 숫자가 리턴됨
- JollyJumpers/김태진 . . . . 1 match
int i,j,temp;
- LoveCalculator/zyint . . . . 1 match
int i,j,sum=0, jari=1;
- MagicSquare/성재 . . . . 1 match
int i,j;
- Mario . . . . 1 match
int i,j,n,k=0,sum=0;
- MineSweeper/zyint . . . . 1 match
mineAroundplus(i,j)
- Omok/은지 . . . . 1 match
int i,j;
- One/박원석 . . . . 1 match
int i,j;
- One/피라미드 . . . . 1 match
int i,j,k;
- PNGFileFormat/FormatUnitTestInPythonLanguage . . . . 1 match
self.assertTrue(rgbmap[j][i].compare(im.getpixel((i,j)) ) )
- POLY/김태진 . . . . 1 match
int i,j,level,n,T;
- ProjectSemiPhotoshop/SpikeSolution . . . . 1 match
int i,j;
- RabbitHunt/김태진 . . . . 1 match
int N,i,j,k=0;
- RandomWalk/성재 . . . . 1 match
int count,i,j;
- RandomWalk/손동일 . . . . 1 match
int i,j;
- RandomWalk/현민 . . . . 1 match
int i,j,num;
- RandomWalk2/현민 . . . . 1 match
int M,N,i,j;
- Randomwalk/조동영 . . . . 1 match
int i,j;
- Shoemaker's_Problem/김태진 . . . . 1 match
int i,j,N,n,k;
- SmithNumbers/김태진 . . . . 1 match
int i,j,n,N,l,save,sum,ssum,k=0;
- StackAndQueue/손동일 . . . . 1 match
int i,j;
- StuPId/김태진 . . . . 1 match
int i,j,k,N,n,sum=1,Sce=1;
- TicTacToe/임인택 . . . . 1 match
drawCell(g, i,j,board[i][j]);
- UglyNumbers/구자겸 . . . . 1 match
int i,j; // 카운터
- XOR삼각형/임다찬 . . . . 1 match
int i,j,k;
- Yggdrasil/020515세미나 . . . . 1 match
int i,j;
- [Lovely]boy^_^/USACO/BrokenNecklace . . . . 1 match
int i,j,curpos;
- randomwalk/홍선 . . . . 1 match
int i,j;
- usa_selfish/김태진 . . . . 1 match
int N,i,j,k;
- 고한종/십자가돌리기 . . . . 1 match
int i,j; //i는 행, j는 열.
- 구구단/곽세환 . . . . 1 match
int i,j,k;
- 구구단/변준원 . . . . 1 match
int i,j;
- 구구단/임다찬 . . . . 1 match
int i,j;
- 김희성/리눅스계정멀티채팅 . . . . 1 match
int i,j;
- 데블스캠프2006/월요일/연습문제/for/김준석 . . . . 1 match
int i,j;
- 데블스캠프2006/월요일/연습문제/for/성우용 . . . . 1 match
int i,j;
- 데블스캠프2006/월요일/연습문제/for/윤영준 . . . . 1 match
int i,j,n;
- 데블스캠프2006/월요일/연습문제/for/임다찬 . . . . 1 match
int i,j,k,l;
- 데블스캠프2006/월요일/연습문제/for/주소영 . . . . 1 match
int i,j,n;
- 데블스캠프2006/월요일/연습문제/if-else/김대순 . . . . 1 match
int i,j;
- 데블스캠프2006/월요일/연습문제/if-else/김준석 . . . . 1 match
int i,j,count =0;
- 데블스캠프2006/월요일/연습문제/switch/김대순 . . . . 1 match
int i,j;
- 데블스캠프2006/화요일/pointer/문제3/성우용 . . . . 1 match
int i,j;
- 데블스캠프2006/화요일/pointer/문제3/이장길 . . . . 1 match
int i,j;
- 데블스캠프2009/월요일/연습문제/svn코드레이스/박근수 . . . . 1 match
int a,i,j;void main(){scanf("%d",&a);for(;i<a;i++){for(j=0;j<a;j++)printf(j==0||j==a-1||i==0||i==a-1?"*":" ");puts("");}}
- 데블스캠프2013/셋째날/머신러닝 . . . . 1 match
int cat,i,j,k,itemp;
- 마름모출력/이태양 . . . . 1 match
int i,j,k,b;
- 마방진/변준원 . . . . 1 match
int size,i,j;
- 만년달력/손동일,aekae . . . . 1 match
int i,j,a;
- 미로찾기/김태훈 . . . . 1 match
int i,j;
- 미로찾기/최경현김상섭 . . . . 1 match
int i,j;
- 변준원 . . . . 1 match
int i,j,k/*,l,*/,m,n;
- 빵페이지/도형그리기 . . . . 1 match
int i,j, num;
- 빵페이지/숫자야구 . . . . 1 match
int i, j, k, num; //i,j,k 는 포문용, num 은 사용자 입력입니다.
- 새싹교실/2011/AmazingC/과제방 . . . . 1 match
int i,j,k;
- 새싹교실/2011/Pixar/실습 . . . . 1 match
int i,j;
- 새싹교실/2011/무전취식/레벨9 . . . . 1 match
int i,j,temp;
- 새싹교실/2011/씨언어발전/3회차 . . . . 1 match
int i,j;
- 새싹교실/2012/강력반 . . . . 1 match
printf("%d*%d=%d\n", i,j,i*j);
- 새싹교실/2013/록구록구/3회차 . . . . 1 match
int i,j =0;
- 성우용 . . . . 1 match
int i,j,x_point,y_point;
- 소수구하기/임인택 . . . . 1 match
int i,j;
- 수/구구단출력 . . . . 1 match
변수명은 가능하면 a,b 나 i,j 같이 이름만 보고 무슨 의미인지 알기 힘들게 짓기 보다는 조금 더 길어지더라도 이름만 보고 이게 무슨 역할을 하는 변수명이구나 하고 알수 있게 짓는 버릇을 들이는게 좋다. 주석이 필요 없을 정도로 변수명 함수명만 보고 이게 무슨 일을 하는 변수, 함수 이다라고 알수 있게 하면 더 더욱 좋다. - [상협]
- 숫자야구/ 변준원 . . . . 1 match
int i,j;
- 숫자야구/aekae . . . . 1 match
int i,j;
- 숫자야구/민강근 . . . . 1 match
int input,a,b,c,i,j,q,st,ba;
- 숫자야구/조재화 . . . . 1 match
int i,j;
- 오목/재선,동일 . . . . 1 match
int i,j;
- 정렬/aekae . . . . 1 match
int i,j,k,temp;
- 정렬/변준원 . . . . 1 match
int i,j,k,sort;
- 정렬/손동일 . . . . 1 match
int i,j;
- 파스칼삼각형/구자겸 . . . . 1 match
int i,j; // 카운터
- 파스칼삼각형/김준석 . . . . 1 match
int i,j;
- 파스칼삼각형/임다찬 . . . . 1 match
int i,j;
- 피보나치/정수민 . . . . 1 match
i,j,k=1,0,0
- 허아영/C코딩연습 . . . . 1 match
int i,j;
Found 141 matching pages out of 7555 total pages (5000 pages are searched)
You can also click here to search title.