Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Can you please change this C language code to JAVA language code? #include #include void division(char x, char y) { register char A, M, Q;

Can you please change this C language code to JAVA language code?

#include #include

void division(char x, char y) { register char A, M, Q;

unsigned char t, s, r;

int i;

Q = x; M = y; A = 0;

//display initial values in A, Q and M printf("Initially: A = %d Q = %d M = %d ", A, Q, M);

Q = abs(x); M = abs(y);

r = sizeof(char)*8;

t = 1 << (r-1);

for(i=0; i < r; i++) { //shift left AQ A = A <<1; s = Q & t; s = s >> (r-1); Q = Q << 1; A = A | s;

//A = A -M A = A - M;

//MSB of A s = A & t; s = s >> (r-1);

//check MSB if(s==0) //Q[0] = 1 Q = Q | 1; else { //Q[0] = 0 Q = Q | 0; //restore A A = A + M; } } if(x<0) A = ~A + 1;

if(x<0 && y>0 || x>0 && y<0) Q = ~Q + 1;

//display Quotient and Remainder printf("Quotient = %d\t", Q); printf("Remainder = %d ", A);

printf("%dR%d ", Q, A);

}

int main() { int a, b;

printf("Enter dividend and divisor: "); scanf("%d%d", &a, &b);

division(a, b); }

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Professional SQL Server 2000 Database Design

Authors: Louis Davidson

1st Edition

1861004761, 978-1861004765

More Books

Students also viewed these Databases questions

Question

=+ How would you advise those problems be resolved?

Answered: 1 week ago