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, 22.06.2019 08:30
On the loan worksheet in cell c9 enter pmt function to calculate the monthly payment for the altamonte springs 2018 facilities loan. ensure that the function returns a positive value and set the reference to cells b5 and b6 as absolute references.
Answers: 2
question
Computers and Technology, 24.06.2019 03:30
Which explains extrinsic motivation? a)motivation in which there is a reward b)motivation that is personally satisfying c)motivation that is personally meaningful d)motivation in which the subject is interesting
Answers: 1
question
Computers and Technology, 24.06.2019 03:30
What is the purpose of a computer network needs assessment? to analyze which workers need more training to improve their performance to compare worker productivity to determine what steps employees can take to increase company revenue to evaluate how to move from the current status to the desired goal
Answers: 2
question
Computers and Technology, 24.06.2019 09:00
Why might you chose to crest a function resume
Answers: 1
You know the right answer?
public class Exercise_07 { public static void main(String[] args) { System. out. println(bin2Dec("11...
Questions
question
Social Studies, 18.04.2021 15:20
question
Mathematics, 18.04.2021 15:20
question
Mathematics, 18.04.2021 15:20
question
Mathematics, 18.04.2021 15:20
question
Mathematics, 18.04.2021 15:20
Questions on the website: 13722361