FLOWCHART AND PSEUDOCODE
Convert decimal no. to its binary equivalent
PSEUDOCODE:
Start
Declare variables decimal, index, result
Declare array binary[]
Read decimal
Set index = 0
while decimal > 0 do
binary[index] = decimal mod 2
index=index+1
decimal = decimal/2
end while
for i = index-1 to 0 Step -1
Set result=result+binary[i]
End for
Display result
Stop
FLOWCHART
Comments
Leave a comment