Biology Forums - Study Force

Science-Related Homework Help Computer Studies Topic started by: michlee on May 5, 2020



Title: What is the output of the following code?public class Test { public static void main(String[] args) ...
Post by: michlee on May 5, 2020
What is the output of the following code?

public class Test {
public static void main(String[] args) {
java.math.BigInteger x = new java.math.BigInteger("3");
java.math.BigInteger y = new java.math.BigInteger("7");
x.add(y);
System.out.println(x);
}
}


▸ 10

▸ 3

▸ 11

▸ 4


Title: What is the output of the following code?public class Test { public static void main(String[] args) ...
Post by: Nikki_LYNN on May 5, 2020
Content hidden