What values for x and y will cause this code to print "btc"?
String buy = "bitcoin";
System.out.println(buy.substring(x, x+1) + buy.substring(y, y+2))
What values for x and y will cause this code to print "btc"?
String buy = "bitcoin";
System.out.println(buy.substring(x, x+1) + buy.substring(y, y+2))