- CCNA . . . . 21 matches
255 -> 11111111(2)
이를 십진수로 표현시 0.0.0.0 ~ 255.255.255.255
* 클래스A : 0xxx xxxx.xxxx xxxx.xxxx xxxx.xxxx xxxx형식(0.0.0.0~127.255.255.255)
* 클래스B : 10xx xxxx.xxxx xxxx.xxxx xxxx.xxxx xxxx형식(128.0.0.0~191.255.255.255)
* 클래스C : 110x xxxx.xxxx xxxx.xxxx xxxx.xxxx xxxx형식(192.0.0.0~223.255.255.255)
즉, 192.0.1.0~233.255.254.0은 클래스C(192~233)
* 클래스A : 255.0.0.0
* 클래스B : 255.255.0.0
* 클래스C : 255.255.255.0
- ProjectCCNA/Chapter5 . . . . 20 matches
이를 십진수로 표현시 0.0.0.0 ~ 255.255.255.255
(0.0.0.0~127.255.255.255)
(128.0.0.0~191.255.255.255)
(192.0.0.0~223.255.255.255)
즉, 192.0.1.0~233.255.254.0은 클래스C(192~233)
* 클래스A : 255.0.0.0
* 클래스B : 255.255.0.0
* 클래스C : 255.255.255.0
- 3DGraphicsFoundation/INSU/SolarSystem . . . . 14 matches
glRGB(255,100,0);
glRGB(0,0,255);
glRGB(200,100,255);
glRGB(0,255,255);
glRGB(255,0,0);
glRGB(255,100,0);
glRGB(255,100,0);
glRGB(255,50,0);
glRGB(0,255,255);
glRGB(255,255,255);
- bitblt로 투명배경 구현하기 . . . . 12 matches
그리고 투명화될 색상은 RGB값 255,0,255입니다.^^
SetBkColor(hdc_original, RGB(255,0,255) );
배경으로 사용될 색(RGB(255,0,255))이외에는 모두 검은색으로 만들어 주었습니다.^^
SetTextColor(hdc_original, RGB(255,255,255));
SetBkColor(hdc_background, RGB(255,255,255));
- AseParserByJhs . . . . 10 matches
char ds[255];
char debug_buf[255];
char data[255];
char tmp_name[255];
char name[255];
char data[255];
char tmp_name[255];
char name[255];
char tmp_name[255];
char name[255];
- CubicSpline/1002/GraphPanel.py . . . . 10 matches
brush = wxBrush(wxColour(255,255,230), wxSOLID)
self.plotGraph(dc, self.normalFunc, wxColour(255,0,0))
self.plotGraph(dc, self.lagrange, wxColour(0,0,255))
self.plotGraph(dc, self.piecewiseLagrange, wxColour(255,255,0))
self.plotGraph(dc, self.errorPiecewiseLagrange, wxColour(255,255,200))
self.plotGraph(dc, self.errorCubicSpline, wxColour(255,0,255))
- JavaScript/2011년스터디/CanvasPaint . . . . 7 matches
ctx.fillStyle="rgb(255, 255, 255)";
ctx.strokeStyle="rgb(255, 255, 255)";
ctx.strokeStyle="rgb(255, 0, 0)";
- Code/RPGMaker . . . . 6 matches
def initialize red, green, blue, alpha=255
def set red, green, blue, alpha=255
r = adjust_value(r, 0, 255)
g = adjust_value(g, 0, 255)
b = adjust_value(b, 0, 255)
a = adjust_value(a, 0, 255)
- 05학번만의C++Study/숙제제출4/최경현 . . . . 5 matches
String *test[255];
for( int i = 0; i < 255; i++)
int check_number[255] ;
for (int a=0 ; a<255;a++)
for(k=0 ; k<255 ; k++)
- Ones/송지원 . . . . 5 matches
|| 링크 ||[http://poj.org/problem?id=2551] ||
|| 9255717 || enochbible || 2551 || Time Limit Exceeded || || || C || 1263B ||
|| 9255761 || enochbible || 2551 || Accepted || 184K || 641MS || C || 1024B ||
- 나를만든책장관리시스템/DBSchema . . . . 5 matches
|| bTitle || varchar(255) ||
|| bAuthor || varchar(255) ||
|| bPublisher || varchar(255) ||
|| bISBN || varchar(255) ||
|| bImage || varchar(255) ||
- CCNA/2013스터디 . . . . 4 matches
|| 8 || Router_Aconfig-if)#ip address 10.0.0.1 255.255.255.0 || Serial 0 interface의 ip 주소는 10.0.0.1 서브넷마스크는 255 ||
- EmbeddedSystemClass . . . . 4 matches
'''PXA255-Pro3'''
Intel XScale PXA255 400MHz processor 탑재
[http://zeropage.org/common-ftp/@embedded-system-cd/HUINS/pxa255_pro3v5.2A.iso 내장형시스템 보드 CD DOWNLOAD] : PXA255A (Intel XScale 400Mhz)
- WheresWaldorf/Celfin . . . . 4 matches
char temp[255];
cin.getline(temp, 255);
cin.getline(temp, 255);
cin.getline(temp, 255);
- 데블스캠프2011/다섯째날/PythonNetwork . . . . 4 matches
addr = ('255.255.255.255', 3333)
- 오목/곽세환,조재화 . . . . 4 matches
CBrush brush(RGB(255,0,0));
CBrush brush(RGB(255,255,255));
- 05학번만의C++Study/숙제제출/4 . . . . 3 matches
* 생성되는 전체 클래스의 개수는 255개를 넘지 않는다고 가정한다.
편의를 위해서 255개를 안넘는다고 했으니까~ 255개짜리 배열을 만들어서 해도되~ㅎㅎ 그럼 열심히 해서 제출하라고! - [조현태]
- 5인용C++스터디/더블버퍼링 . . . . 3 matches
MemDC.FillSolidRect(0, 0, 1024, 768, RGB(255, 255, 255));
- DirectDraw/Example . . . . 3 matches
suf2->SetColorKey(RGB(255,255,255));
- Dubble_Buffering . . . . 3 matches
brush.CreateSolidBrush(RGB(255,255,255));
- MobileJavaStudy/HelloWorld . . . . 3 matches
g.setColor(255,255,255);
- STL/string . . . . 3 matches
["[Lovely]boy^_^"]는 이걸 망각하고 1시간동안 삽질을 한 경험이 있다. 이럴때는 일단 char input[255]정도로 큰 배열 잡아 놓은 다음 string으로 변환 시켜준다. 예제를 보자.
char input[255];
cin.getline(input, 255);
- VendingMachine/세연/1002 . . . . 3 matches
const int DRINKNAME_MAXLENGTH = 255;
const int DRINKNAME_MAXLENGTH = 255;
const int DRINKNAME_MAXLENGTH = 255;
- WikiTextFormattingTestPage . . . . 3 matches
I wonder if that would give me a way to either force white space (sounds likely -- insert <alt>255 on multiple lines?) or force a line break without causing a blank line in the output (doesn't sound as likely)?
Some lines with <alt>255 separated by totally blank lines:
Well, there's an answer, but not quite what I was looking for -- the <alt>159 syntax represents the ASCII codes from 0 to 255 (decimal). What does the <alt>0159 syntax represent?
- 오목/민수민 . . . . 3 matches
CBrush brush( RGB(255,255,255) );
- 오목/재니형준원 . . . . 3 matches
CBrush white(RGB(255,255,255));
- ACM_ICPC/2011년스터디 . . . . 2 matches
* [http://poj.org/problem?id=2551 2551 Ones/송지원]
- Graphical Editor/Celfin . . . . 2 matches
char name[255], trash[255];
- MoniWikiACL . . . . 2 matches
@Block 123.123.0.0/255.255.0.0, 123.12, 123.125.0/16
- OurMajorLangIsCAndCPlusPlus/limits.h . . . . 2 matches
||UCHAR_MAX ||부호없는 char형의 최대값 ||255 (0xff) ||
||CHAR_MAX ||char형의 최대값 ||127; 255 if /J option used ||
- PokerHands/Celfin . . . . 2 matches
char temp[255];
cin.getline(temp, 255);
- WERTYU/Celfin . . . . 2 matches
char input[255];
while(cin.getline(input, 255))
- 개인키,공개키/박진영,김수진,나휘동 . . . . 2 matches
result1 = result%255;
fout <<char(result+255);
- 금고 . . . . 2 matches
255 7
255 8
- 레밍즈프로젝트/프로토타입/SetBit . . . . 2 matches
memdc->SetPixel(i, j, RGB(255, 255, 0));
- 새싹교실/2012/아우토반 . . . . 2 matches
[http://farm8.staticflickr.com/7255/6862539104_530f643d74_m.jpg http://farm8.staticflickr.com/7255/6862539104_530f643d74_m.jpg] [http://farm8.staticflickr.com/7227/7008654907_51bd5d3744_m.jpg http://farm8.staticflickr.com/7227/7008654907_51bd5d3744_m.jpg] [http://farm8.staticflickr.com/7128/7008654803_df7c62a259_m.jpg http://farm8.staticflickr.com/7128/7008654803_df7c62a259_m.jpg] [http://farm8.staticflickr.com/7260/7008654697_9d69842fe0_m.jpg http://farm8.staticflickr.com/7260/7008654697_9d69842fe0_m.jpg]
- 캠이랑놀자/보창 . . . . 2 matches
if value + degree > 255:
value = 255
- 캠이랑놀자/보창/숙제1 . . . . 2 matches
for x in range(0,255,5):
for y in range(0,255,5):
- 05학번만의C++Study/숙제제출4/조현태 . . . . 1 match
const int MAX_CLASS=255;
- 2dInDirect3d/Chapter2 . . . . 1 match
D3DCOLOR_XRGB(r, g, b); // 보통 사용하는 매크로와 사용법이 같다. 이때 a 값은 0이 아닌 255(최대값)이 들어간다.
- Basic알고리즘/팰린드롬/조현태 . . . . 1 match
char buffur[255];
- BlueZ . . . . 1 match
max_rsp = 255;
- BoostLibrary . . . . 1 match
|| [[ISBN(0321227255)]] || [[ISBN(0201729148)]] || [[ISBN(0321133544)]] ||
- Counting/황재선 . . . . 1 match
String output = "7804866167757385351726298167749579946964405850225254539132682472794981869745040537197592219996231328486687877730240352396489040560067523395940725030942516170568234738182127635234624655775531244438437118253542255365923486221253172456203933189283985689116139597563337647696143005496252287734941893682019406515104829885420261968884040123236083676226862353415881286645117793584639279853095668990201156175586714";
- ExploringWorld/20040412-세상읽기 . . . . 1 match
''--p255 [뇌를단련하다] 일부 발췌 (...은 생략)''
- FromDuskTillDawn/조현태 . . . . 1 match
const int BUFFER_SIZE = 255;
- HowManyFibs?/1002 . . . . 1 match
251:53 252:53 253:53 254:53 255:54 256:54 257:54 258:54 259:54 260:55
- MoniWikiPo . . . . 1 match
#: ../plugin/Keywords.php:255
- OurMajorLangIsCAndCPlusPlus/2006.2.06/허준수 . . . . 1 match
s.ch = new char[255];
- OurMajorLangIsCAndCPlusPlus/XML/조현태 . . . . 1 match
#define INPUT_BUFFUR 255
- PhotoShop2003 . . . . 1 match
*If sum of mask_value is '0' or '1' , pixel_values are from '0' to '255' so need not L.U.T.
- ProjectCCNA/Chapter3 . . . . 1 match
255 -> 11111111(2)
- RandomWalk2/TestCase2 . . . . 1 match
222224444433333222255555
- STL/map . . . . 1 match
warning 의 이유는 STL에서 나오는 디버그의 정보가 VC++ 디버그 정보를 위해 할당하는 공간(255byte)보다 많기 때문입니다. 보통 디버그 모드로 디버깅을 하지 않으면, Project setting에서 C/C++ 텝에서 Debug info 를 최소한 line number only 로 해놓으면 warning 는 없어 집니다. 그래도 warning 가 난다면 C/C++ 텝에서 Generate browse info 를 비활성(기본값)화 시키세요.
- WinampPlugin을이용한프로그래밍 . . . . 1 match
in->SetVolume(255);
- html5/canvas . . . . 1 match
* 픽셀 데이터를 나타내는 숫자(0~255)로 이루어진 1차원 배열.
- zennith/ls . . . . 1 match
char argRedirectToDir[255] = "dir";
- 개인키,공개키/김회영,권정욱 . . . . 1 match
if (int(ch)> 255) ch = ch % askii;
- 게임프로그래밍 . . . . 1 match
SDL_FillRect(pScreen,&pScreen->clip_rect,SDL_MapRGB(pScreen->format,0,0,255));
- 경시대회준비반/BigInteger . . . . 1 match
ostrstream ostr(R,255);
- 논문번역/2012년스터디/서민관 . . . . 1 match
따라서 이미지의 그레이 레벨 간격은 가장 어두운 곳이 0이 되고 가장 밝은 곳이 255가 된다.
- 논문번역/2012년스터디/이민석 . . . . 1 match
마지막 전처리는 그레이 레벨을 정규화하여 다양한 펜과 배경색으로 인한 변화에 대처하는 것이다. 이미지의 그레이 레벨 구간은 어두운 강도는 0이 되고 밝은 쪽은 255가 되도록 조정한다. 말뭉치의 통상적인 한 줄에 이들 전처리를 적용한 결과가 그림 3에 나타나있다.
- 새싹교실/2011/무전취식/레벨10 . . . . 1 match
char pel[255] ;
- 새싹교실/2012/사과나무 . . . . 1 match
* 1. 1~255까지 홀수와 짝수의 갯수를 출력하기
- 송지훈 . . . . 1 match
핸폰 : 010-4043-2554.
- 영호의바이러스공부페이지 . . . . 1 match
good to select 255d (FFh) the blank character.
- 임시 . . . . 1 match
char myName[255];
- 정모 . . . . 1 match
|| 2월 || [http://zeropage.org/notice/24255 정모/2009.2.11, [http://zeropage.org/notice/24896 정모/2009.2.27]]||
- 프로그래밍십계명 . . . . 1 match
*정수가 절대로 그 한계를 넘지 않으리라 가정하는 것은 어리석음이라. 127, -128, 255, 32767, -32768, 65535, 이 숫자들을 너의 골수에 새기어라. 0.0은 0이 아니니 실수는 원래부터 결코 정밀하지 않느니라. 부호 없는 것과 있는 것을 어울리거나 정수끼리 나눌 때에는 늘 조심하여라.
Found 69 matching pages out of 7555 total pages (5000 pages are searched)
You can also click here to search title.