Booth Division algorithm(부스 나누기 알고리즘) 소스입니다. - Booth_Div.cpp
본 자료는 미만의 자료로 미리보기를 제공하지 않습니다.
닫기
  • 1
해당 자료는 0페이지 까지만 미리보기를 제공합니다.
0페이지 이후부터 다운로드 후 확인할 수 있습니다.

소개글

Booth Division algorithm(부스 나누기 알고리즘) 소스입니다. - Booth_Div.cpp에 대한 보고서 자료입니다.

목차

Booth_Div.cpp


3.10KB

본문내용

#include
#include
#include

int getsize(int x)
{
int c;
if(x<=1)
c = 2;
else if(x < 4)
c = 2;
else if(x< 8)
c = 3;
else if(x< 16)
c = 4;
else if(x< 32)
c = 5;
else if(x< 64)
c = 6;
else if(x< 128)
c = 7;
else if(x< 256)
c = 8;
else if(x< 512)
c = 9;
return c;
}

int max(int x,int y)
{
if(x< y)
return(y);
else
return(x);
}

int main()
{
int B,Q,Z,M,c,c1,e,f,g,h,i,j,x,y,ch,in,S,G,P;
int a[24],b[12],b1[12],q[12],carry=0,count=0,option;
int num;

do
{
  • 가격3,300
  • 페이지수1페이지
  • 등록일2013.10.10
  • 저작시기2013.5
  • 파일형식기타(cpp)
  • 자료번호#885131
본 자료는 최근 2주간 다운받은 회원이 없습니다.
청소해
다운로드 장바구니