-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaddBinary.cls
30 lines (24 loc) · 838 Bytes
/
addBinary.cls
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// WAP to add two binary nos. '100101' & '0101101' which are in text format.
public class addBinary{
public static void binary() {
Integer num1 = 100101;
Integer num2 = 0101101;
integer i=0;
integer carry =0;
List<integer> finalSum = new List<integer>();
while(num1 != 0 || num2 != 0){
finalSum[i++] = (integer)(carry + (num1 * 10 + num2 * 10) * 2);
carry = (integer) ((num1 * 10 + num2 * 10 + carry) / 2);
num1 = num1/10;
num2 = num2/10;
if(carry != 0){
finalSum[i++] = carry;
}
--i;
System.debug('output: ' );
while(i >= 0){
System.debug(finalSum[i--]);
}
}
}
}