David Thornley e83f6c886e new commit 6 lat temu
.DS_Store initial commit 6 lat temu
Factorial.class new commit 6 lat temu
Factorial.ctxt new commit 6 lat temu
Factorial.java new commit 6 lat temu
FactorialTest.class new commit 6 lat temu
FactorialTest.ctxt new commit 6 lat temu
FactorialTest.java initial commit 6 lat temu
IntegerPrinter.class new commit 6 lat temu
IntegerPrinter.ctxt new commit 6 lat temu
IntegerPrinter.java new commit 6 lat temu
IntegerPrinterTest.class new commit 6 lat temu
IntegerPrinterTest.ctxt new commit 6 lat temu
IntegerPrinterTest.java initial commit 6 lat temu
LargestInteger.class new commit 6 lat temu
LargestInteger.ctxt new commit 6 lat temu
LargestInteger.java new commit 6 lat temu
LargestIntegerTest.class new commit 6 lat temu
LargestIntegerTest.ctxt new commit 6 lat temu
LargestIntegerTest.java initial commit 6 lat temu
NormalizeAngle.class new commit 6 lat temu
NormalizeAngle.ctxt new commit 6 lat temu
NormalizeAngle.java new commit 6 lat temu
NormalizeAngleTest.class new commit 6 lat temu
NormalizeAngleTest.ctxt new commit 6 lat temu
NormalizeAngleTest.java initial commit 6 lat temu
README.md initial commit 6 lat temu
ShortCalculator.class new commit 6 lat temu
ShortCalculator.ctxt new commit 6 lat temu
ShortCalculator.java new commit 6 lat temu
ShortCalculatorTest.class new commit 6 lat temu
ShortCalculatorTest.ctxt new commit 6 lat temu
ShortCalculatorTest.java initial commit 6 lat temu
package.bluej new commit 6 lat temu

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.