1
1
=1
2
1,1
2
=1+1=2
3
1,1,1
2,1
1,2
3
=1+2+1=4
4
1,1,1,1
2,1,1
1,2,1
1,1,2
2,2
1,3
3,1
=1+3+1+2=7
5
1,1,1,1,1
2,1,1,1
1,2,1,1
1,1,2,1
1,1,1,2
1,2,2
2,1,2
2,2,1
3,1,1
1,3,1
1,1,3
3,2
2,3
1+4+3+3+2=13
Game, Programing, Mac OSX
Monday, June 25, 2007
Friday, June 15, 2007
WOW. BloodElf Paladin
신성
성기사에게 힐의 능력을 극대화시켜줍니다.
물론 힐뿐만아니라 신성공격마법역시 극대화시켜주죠.
보통 인던을 갈때 힐러로서 갑니다.
보호
끈질긴 생명력의 끝을 보여주는 특성입니다.
인던을 갈때 탱커로서 갑니다.
징벌
솔플시에나 파티플시에나 뭐 그렇게 튀진않습니다.
하지만 다른 특성보다는 데미지가 많이 나가고
파티플시에도 보조딜러 겸 보조힐러로서 가죠.
렙업용 특성은 징벌이 좋습니다.
주징벌
성기사에게 힐의 능력을 극대화시켜줍니다.
물론 힐뿐만아니라 신성공격마법역시 극대화시켜주죠.
보통 인던을 갈때 힐러로서 갑니다.
보호
끈질긴 생명력의 끝을 보여주는 특성입니다.
인던을 갈때 탱커로서 갑니다.
징벌
솔플시에나 파티플시에나 뭐 그렇게 튀진않습니다.
하지만 다른 특성보다는 데미지가 많이 나가고
파티플시에도 보조딜러 겸 보조힐러로서 가죠.
렙업용 특성은 징벌이 좋습니다.
주징벌
Tuesday, April 17, 2007
Find prime numbers (C source, 퍼옴)
#include
char prime_check(int num)
{
int flag=1;
for(int i=2;i<=num/2;i++)
if(num%i==0)
{
flag=0;
break;
}
return flag;
}
void main()
{
int num1,num2,count=0,max,min;
printf("시작 정수를 입력하세요=");
scanf("%d",&num1);
printf("최종 정수를 입력하세요=");
scanf("%d",&num2);
max=num1;
min=num2;
for(int i=num1;i<=num2;i++)
{
if(prime_check(i)==1)
{
count++;
if(i>max)
max=i;
if(i min=i;
//printf("%d is prime number\n",i);
}
}
printf("%d prime numbers\n",count);
printf("%d minimum prime number\n",min);
printf("%d maximum prime number\n",max);
}
Thursday, April 12, 2007
Computer Science
Computer Science. It is very hard 'work' to study that.
Default C programming.
Data Structure. Programming Languege.
Java programming to study Object-Oriented programming.
Assembler. Data communication.
Linear Algebra.
C programming is English. I have studied little and can speak little.
Java programming likes Japanese. It have been known, but cannot use absolutely.
C++ programming likes Chinese. I haven't heard and can speak just 'nihaoma'
Assembler is LATIN!. It is a another dimension's languege...............
How can I study these perpect........!!!!!!!!
Default C programming.
Data Structure. Programming Languege.
Java programming to study Object-Oriented programming.
Assembler. Data communication.
Linear Algebra.
C programming is English. I have studied little and can speak little.
Java programming likes Japanese. It have been known, but cannot use absolutely.
C++ programming likes Chinese. I haven't heard and can speak just 'nihaoma'
Assembler is LATIN!. It is a another dimension's languege...............
How can I study these perpect........!!!!!!!!
Tuesday, January 23, 2007
Game, Game, Game
I have played too many games since Sangbyung vacation.
World of Warcraft, Lineage2, Kartrider, Maplestory,
Sudden Attack, Skidrush, Dungeon and Fighter,
Dungeon and Dragons Online.
It was a wasted time.
I will play only one game.
And I have to study C programming.
World of Warcraft, Lineage2, Kartrider, Maplestory,
Sudden Attack, Skidrush, Dungeon and Fighter,
Dungeon and Dragons Online.
It was a wasted time.
I will play only one game.
And I have to study C programming.
Subscribe to:
Posts (Atom)