Answer:
underscore hope that helps
Explanation:
it means to alt f4 then that would help so it can eat the microscope then have it digested
Answer:
public class Brainly
{
public static void main(String[] args)
{
BinaryConverter conv = new BinaryConverter();
String binStr = "01001101";
System.out.print(binStr + " in decimal is "+conv.BinToDec(binStr));
}
}
public class BinaryConverter
{
public int BinToDec(String binStr)
{
int d = 0;
while(binStr.length() > 0)
{
d = (d << 1) + ((binStr.charAt(0) == '1') ? 1: 0);
binStr = binStr.substring(1);
}
return d;
}
}
Explanation:
The program "eats" the string from left to right, and builds up the integer representation in variable "d" on the go. While there are digits left, it shifts the previous result to the left and sets the least signficant bit to 1 only if the corresponding string character is a 1.
U can see the printscr botton at the top right of ur keyboard and then u can type paint and the control v.
There is not necessarily one site we can all go to and get any answers we want, trust me I been trying to find a site that does that but, if you want your questions answered post it on this site.