Allison Ziegler 135fb32d6b Elimintated an extra line of code in factorial пре 6 година
.DS_Store initial commit пре 6 година
Factorial.class Elimintated an extra line of code in factorial пре 6 година
Factorial.ctxt All tests pass пре 6 година
Factorial.java Elimintated an extra line of code in factorial пре 6 година
FactorialTest.class All tests pass пре 6 година
FactorialTest.ctxt All tests pass пре 6 година
FactorialTest.java initial commit пре 6 година
IntegerPrinter.class All tests pass пре 6 година
IntegerPrinter.ctxt All tests pass пре 6 година
IntegerPrinter.java All tests pass пре 6 година
IntegerPrinterTest.class All tests pass пре 6 година
IntegerPrinterTest.ctxt All tests pass пре 6 година
IntegerPrinterTest.java initial commit пре 6 година
LargestInteger.class All tests pass пре 6 година
LargestInteger.ctxt All tests pass пре 6 година
LargestInteger.java All tests pass пре 6 година
LargestIntegerTest.class All tests pass пре 6 година
LargestIntegerTest.ctxt All tests pass пре 6 година
LargestIntegerTest.java initial commit пре 6 година
Main.class All tests pass пре 6 година
Main.ctxt All tests pass пре 6 година
Main.java All tests pass пре 6 година
NormalizeAngle.class All tests pass пре 6 година
NormalizeAngle.ctxt All tests pass пре 6 година
NormalizeAngle.java All tests pass пре 6 година
NormalizeAngleTest.class All tests pass пре 6 година
NormalizeAngleTest.ctxt All tests pass пре 6 година
NormalizeAngleTest.java initial commit пре 6 година
README.TXT All tests pass пре 6 година
README.md initial commit пре 6 година
ShortCalculator.class All tests pass пре 6 година
ShortCalculator.ctxt All tests pass пре 6 година
ShortCalculator.java All tests pass пре 6 година
ShortCalculatorTest.class All tests pass пре 6 година
ShortCalculatorTest.ctxt All tests pass пре 6 година
ShortCalculatorTest.java initial commit пре 6 година
package.bluej Elimintated an extra line of code in factorial пре 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.