William Simkins 588c83b475 finished lab 6 年 前
.DS_Store initial commit 6 年 前
Factorial.class finished lab 6 年 前
Factorial.ctxt finished lab 6 年 前
Factorial.java finished lab 6 年 前
FactorialTest.class finished lab 6 年 前
FactorialTest.ctxt finished lab 6 年 前
FactorialTest.java initial commit 6 年 前
IntegerPrinter.class finished lab 6 年 前
IntegerPrinter.ctxt finished lab 6 年 前
IntegerPrinter.java finished lab 6 年 前
IntegerPrinterTest.class finished lab 6 年 前
IntegerPrinterTest.ctxt finished lab 6 年 前
IntegerPrinterTest.java initial commit 6 年 前
LargestInteger.class finished lab 6 年 前
LargestInteger.ctxt finished lab 6 年 前
LargestInteger.java finished lab 6 年 前
LargestIntegerTest.class finished lab 6 年 前
LargestIntegerTest.ctxt finished lab 6 年 前
LargestIntegerTest.java initial commit 6 年 前
NormalizeAngle.class finished lab 6 年 前
NormalizeAngle.ctxt finished lab 6 年 前
NormalizeAngle.java finished lab 6 年 前
NormalizeAngleTest.class finished lab 6 年 前
NormalizeAngleTest.ctxt finished lab 6 年 前
NormalizeAngleTest.java initial commit 6 年 前
README.TXT finished lab 6 年 前
README.md initial commit 6 年 前
ShortCalculator.class finished lab 6 年 前
ShortCalculator.ctxt finished lab 6 年 前
ShortCalculator.java finished lab 6 年 前
ShortCalculatorTest.class finished lab 6 年 前
ShortCalculatorTest.ctxt finished lab 6 年 前
ShortCalculatorTest.java finished lab 6 年 前
package.bluej finished lab 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.