Aleena Rose-Mathew 97cd22a341 Done 6 年之前
.DS_Store initial commit 6 年之前
Factorial.class Done 6 年之前
Factorial.ctxt Done git add . 6 年之前
Factorial.java Done 6 年之前
FactorialTest.class Done git add . 6 年之前
FactorialTest.ctxt Done git add . 6 年之前
FactorialTest.java initial commit 6 年之前
IntegerPrinter.class Done git add . 6 年之前
IntegerPrinter.ctxt Done git add . 6 年之前
IntegerPrinter.java Done git add . 6 年之前
IntegerPrinterTest.class Done git add . 6 年之前
IntegerPrinterTest.ctxt Done git add . 6 年之前
IntegerPrinterTest.java initial commit 6 年之前
LargestInteger.class Done 6 年之前
LargestInteger.ctxt Done git add . 6 年之前
LargestInteger.java Done 6 年之前
LargestIntegerTest.class Done git add . 6 年之前
LargestIntegerTest.ctxt Done git add . 6 年之前
LargestIntegerTest.java initial commit 6 年之前
NormalizeAngle.class Done 6 年之前
NormalizeAngle.ctxt Done git add . 6 年之前
NormalizeAngle.java Done 6 年之前
NormalizeAngleTest.class Done git add . 6 年之前
NormalizeAngleTest.ctxt Done git add . 6 年之前
NormalizeAngleTest.java initial commit 6 年之前
README.md initial commit 6 年之前
ShortCalculator.class Done 6 年之前
ShortCalculator.ctxt Done 6 年之前
ShortCalculator.java Done 6 年之前
ShortCalculatorTest.class Done git add . 6 年之前
ShortCalculatorTest.ctxt Done git add . 6 年之前
ShortCalculatorTest.java initial commit 6 年之前
package.bluej Done 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.