subject

public class Exercise_07 { public static void main(String[] args) { System. out. println(bin2Dec("1100100")); // Purposely throwing an exception... System. out. println(bin2Dec("lafkja")); } public static int bin2Dec(String binary) throws NumberFormatException { if (!isBinary(binary)) { throw new NumberFormatException(binary + " is not a binary number."); } int power = 0; int decimal = 0; for (int i = binary. length() - 1; i >= 0; i--) { if (binary. charAt(i) == '1') { decimal += Math. pow(2, power); } power++; } return decimal; } public static boolean isBinary(String binary) { for (char ch : binary. toCharArray()) { if (ch != '1' && ch != '0') return false; } return true; } }

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 21.06.2019 17:20
Q-3 a technician is setting up a computer lab. computers on the same subnet need to communicate with eachother peer to peer communication,a. hardware firewallb. proxy serverc. software firewalld. gre tunneling
Answers: 3
question
Computers and Technology, 24.06.2019 10:00
Each time you save a document, you will need to type in the file type in which it should be saved you can select the save button to save it with the same file name if it has been previously saved you will need to select the location to save the file you will need to use the save as dialog box
Answers: 1
question
Computers and Technology, 24.06.2019 11:40
100 pts. first person gets brainliest
Answers: 2
question
Computers and Technology, 24.06.2019 17:30
What is the main difference between cloud computing and saas? cloud computing is a platform, and saas is software. cloud computing is software, and saas is a platform. cloud computing is a service, and saas is software. cloud computing is a service, and saas is a platform.
Answers: 1
You know the right answer?
public class Exercise_07 { public static void main(String[] args) { System. out. println(bin2Dec("11...
Questions
question
Business, 01.08.2019 18:30