Rachelle 7a7194d267 lab submission 6 лет назад
.DS_Store initial commit 6 лет назад
Factorial.class completed IntegerPrinter and Factorial 6 лет назад
Factorial.ctxt completed IntegerPrinter and Factorial 6 лет назад
Factorial.java completed IntegerPrinter and Factorial 6 лет назад
FactorialTest.class completed IntegerPrinter and Factorial 6 лет назад
FactorialTest.ctxt completed IntegerPrinter and Factorial 6 лет назад
FactorialTest.java initial commit 6 лет назад
IntegerPrinter.class completed IntegerPrinter and Factorial 6 лет назад
IntegerPrinter.ctxt completed IntegerPrinter and Factorial 6 лет назад
IntegerPrinter.java completed IntegerPrinter and Factorial 6 лет назад
IntegerPrinterTest.class completed IntegerPrinter and Factorial 6 лет назад
IntegerPrinterTest.ctxt completed IntegerPrinter and Factorial 6 лет назад
IntegerPrinterTest.java initial commit 6 лет назад
LargestInteger.class lab submission 6 лет назад
LargestInteger.ctxt save1 6 лет назад
LargestInteger.java lab submission 6 лет назад
LargestIntegerTest.class save1 6 лет назад
LargestIntegerTest.ctxt save1 6 лет назад
LargestIntegerTest.java initial commit 6 лет назад
NormalizeAngle.class lab submission 6 лет назад
NormalizeAngle.ctxt lab submission 6 лет назад
NormalizeAngle.java lab submission 6 лет назад
NormalizeAngleTest.class save1 6 лет назад
NormalizeAngleTest.ctxt save1 6 лет назад
NormalizeAngleTest.java initial commit 6 лет назад
README.md initial commit 6 лет назад
ShortCalculator.class lab submission 6 лет назад
ShortCalculator.ctxt lab submission 6 лет назад
ShortCalculator.java lab submission 6 лет назад
ShortCalculatorTest.class lab submission 6 лет назад
ShortCalculatorTest.ctxt lab submission 6 лет назад
ShortCalculatorTest.java lab submission 6 лет назад
package.bluej lab submission 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.