Joshua Chung 3d5bb44d3e updated commit 6 年前
.DS_Store initial commit 6 年前
Factorial.class updated commit 6 年前
Factorial.ctxt updated commit 6 年前
Factorial.java updated commit 6 年前
FactorialTest.class updated commit 6 年前
FactorialTest.ctxt updated commit 6 年前
FactorialTest.java updated commit 6 年前
IntegerPrinter.class updated commit 6 年前
IntegerPrinter.ctxt updated commit 6 年前
IntegerPrinter.java updated commit 6 年前
IntegerPrinterTest.class updated commit 6 年前
IntegerPrinterTest.ctxt updated commit 6 年前
IntegerPrinterTest.java initial commit 6 年前
LargestInteger.class updated commit 6 年前
LargestInteger.ctxt updated commit 6 年前
LargestInteger.java updated commit 6 年前
LargestIntegerTest.class updated commit 6 年前
LargestIntegerTest.ctxt updated commit 6 年前
LargestIntegerTest.java updated commit 6 年前
NormalizeAngle.class updated commit 6 年前
NormalizeAngle.ctxt updated commit 6 年前
NormalizeAngle.java updated commit 6 年前
NormalizeAngleTest.class updated commit 6 年前
NormalizeAngleTest.ctxt updated commit 6 年前
NormalizeAngleTest.java initial commit 6 年前
README.md initial commit 6 年前
ShortCalculator.class updated commit 6 年前
ShortCalculator.ctxt updated commit 6 年前
ShortCalculator.java updated commit 6 年前
package.bluej updated commit 6 年前

README.md

Integer Printer

  • Write a program that reads an integer and prints it in :
  • binary
  • Octal
  • Hexadecimal

Normalize Angle

  • Write a program that reads an integer angle (which may be positive or negative) and normalizes it to a value between 0 and 359 degrees. Try it first with the % operator, then with floorMod.

Largest Integer

  • Using only the conditional operator, write a program that reads three integers and prints the largest. Repeat with Math.max

Factorial

  • Write a program that computes the factorial n! = 1 x 2 x ... x n, using BigInteger. Compute the factorial of 1000.

ShortValues

  • Write a program that reads in two numbers between 0 and 65535, stores them in short variables, and computes their unsigned sum, difference, product, quotient, and remainder , without converting them to int.