public class ExString {static int bin2Dec(String biNum) throws BinaryFormatException {int time = 0;int ret = 0;for (int i = biNum.length() - 1; i >= 0; i--) {char ch = biNum.charAt(i);if (ch != '0' && ch != '1') {//为输入方便,允许字符串内包含空格if (ch == ' ') continue;else throw new BinaryFormatException();}int digit = ch - '0';ret += digit * Math.pow(2, time++);}return ret;}}class BinaryFormatException extends Exception {//Throwable的detailMessage成员为私有BinaryFormatException(String msg) {super(msg);}BinaryFormatException() {}}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。