John Kim 6d0c01cddf calc revised again 6 anos atrás
.DS_Store initial commit 6 anos atrás
Factorial.class up to short calc 6 anos atrás
Factorial.ctxt up to short calc 6 anos atrás
Factorial.java up to short calc 6 anos atrás
FactorialTest.class up to short calc 6 anos atrás
FactorialTest.ctxt up to short calc 6 anos atrás
FactorialTest.java initial commit 6 anos atrás
IntegerPrinter.class up to short calc 6 anos atrás
IntegerPrinter.ctxt up to short calc 6 anos atrás
IntegerPrinter.java up to short calc 6 anos atrás
IntegerPrinterTest.class up to short calc 6 anos atrás
IntegerPrinterTest.ctxt up to short calc 6 anos atrás
IntegerPrinterTest.java initial commit 6 anos atrás
LargestInteger.class up to short calc 6 anos atrás
LargestInteger.ctxt up to short calc 6 anos atrás
LargestInteger.java up to short calc 6 anos atrás
LargestIntegerTest.class up to short calc 6 anos atrás
LargestIntegerTest.ctxt up to short calc 6 anos atrás
LargestIntegerTest.java initial commit 6 anos atrás
NormalizeAngle.class up to short calc 6 anos atrás
NormalizeAngle.ctxt up to short calc 6 anos atrás
NormalizeAngle.java up to short calc 6 anos atrás
NormalizeAngleTest.class up to short calc 6 anos atrás
NormalizeAngleTest.ctxt up to short calc 6 anos atrás
NormalizeAngleTest.java initial commit 6 anos atrás
README.md initial commit 6 anos atrás
ShortCalculator.class calc revised again 6 anos atrás
ShortCalculator.ctxt calc revised again 6 anos atrás
ShortCalculator.java calc revised again 6 anos atrás
ShortCalculatorTest.class up to short calc 6 anos atrás
ShortCalculatorTest.ctxt up to short calc 6 anos atrás
ShortCalculatorTest.java initial commit 6 anos atrás
package.bluej calc revised again 6 anos atrás

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.