shakila 2d7527d8d3 Complete 6 년 전
.DS_Store initial commit 6 년 전
Factorial.class Completed Classes# 6 년 전
Factorial.ctxt Completed Classes# 6 년 전
Factorial.java Completed Classes# 6 년 전
FactorialTest.class Completed Classes# 6 년 전
FactorialTest.ctxt Completed Classes# 6 년 전
FactorialTest.java initial commit 6 년 전
IntegerPrinter.class Completed Classes# 6 년 전
IntegerPrinter.ctxt Completed Classes# 6 년 전
IntegerPrinter.java Completed Classes# 6 년 전
IntegerPrinterTest.class Completed Classes# 6 년 전
IntegerPrinterTest.ctxt Completed Classes# 6 년 전
IntegerPrinterTest.java initial commit 6 년 전
LargestInteger.class Complete 6 년 전
LargestInteger.ctxt Completed Classes# 6 년 전
LargestInteger.java Complete 6 년 전
LargestIntegerTest.class Completed Classes# 6 년 전
LargestIntegerTest.ctxt Completed Classes# 6 년 전
LargestIntegerTest.java initial commit 6 년 전
NormalizeAngle.class Complete 6 년 전
NormalizeAngle.ctxt Completed Classes# 6 년 전
NormalizeAngle.java Complete 6 년 전
NormalizeAngleTest.class Completed Classes# 6 년 전
NormalizeAngleTest.ctxt Completed Classes# 6 년 전
NormalizeAngleTest.java initial commit 6 년 전
README.md initial commit 6 년 전
ShortCalculator.class Complete 6 년 전
ShortCalculator.ctxt Complete 6 년 전
ShortCalculator.java Complete 6 년 전
ShortCalculatorTest.class Complete 6 년 전
ShortCalculatorTest.ctxt Complete 6 년 전
ShortCalculatorTest.java Complete 6 년 전
package.bluej Complete 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.