In this Program how should I take Multiple Inputs From user
and how Should I process or use that input in program.
Von Neuman Loves Binary
you are given N binary numbers and you need to print decimal number for each binary number
N you have to take as input. After that you need to take input of N binary numbers. Then convert each binary to decimal. And print decimal number for each binary numbers
Sir firstly I take Number of Inputs N using Scanner then I want to know that how should i get or take N number of binary inputs
@robin,
After taking N as input. You can initiate a for loop from i = 0 to i<N. Inside the for loop you can take input of the binary number.