alizalang aa6828a934 done il y a 6 ans
.DS_Store initial commit il y a 6 ans
Factorial.class done il y a 6 ans
Factorial.ctxt done il y a 6 ans
Factorial.java done il y a 6 ans
FactorialTest.class done il y a 6 ans
FactorialTest.ctxt done il y a 6 ans
FactorialTest.java initial commit il y a 6 ans
IntegerPrinter.class done il y a 6 ans
IntegerPrinter.ctxt done il y a 6 ans
IntegerPrinter.java done il y a 6 ans
IntegerPrinterTest.class done il y a 6 ans
IntegerPrinterTest.ctxt done il y a 6 ans
IntegerPrinterTest.java initial commit il y a 6 ans
LargestInteger.class done il y a 6 ans
LargestInteger.ctxt done il y a 6 ans
LargestInteger.java done il y a 6 ans
LargestIntegerTest.class done il y a 6 ans
LargestIntegerTest.ctxt done il y a 6 ans
LargestIntegerTest.java initial commit il y a 6 ans
NormalizeAngle.class done il y a 6 ans
NormalizeAngle.ctxt done il y a 6 ans
NormalizeAngle.java done il y a 6 ans
NormalizeAngleTest.class done il y a 6 ans
NormalizeAngleTest.ctxt done il y a 6 ans
NormalizeAngleTest.java initial commit il y a 6 ans
README.md initial commit il y a 6 ans
RunCalculator.class done il y a 6 ans
RunCalculator.ctxt done il y a 6 ans
RunCalculator.java done il y a 6 ans
ShortCalculator.class done il y a 6 ans
ShortCalculator.ctxt done il y a 6 ans
ShortCalculator.java done il y a 6 ans
ShortCalculatorTest.class done il y a 6 ans
ShortCalculatorTest.ctxt done il y a 6 ans
ShortCalculatorTest.java done il y a 6 ans
package.bluej done il y a 6 ans

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.