Rachelle 7a7194d267 lab submission před 6 roky
.DS_Store initial commit před 6 roky
Factorial.class completed IntegerPrinter and Factorial před 6 roky
Factorial.ctxt completed IntegerPrinter and Factorial před 6 roky
Factorial.java completed IntegerPrinter and Factorial před 6 roky
FactorialTest.class completed IntegerPrinter and Factorial před 6 roky
FactorialTest.ctxt completed IntegerPrinter and Factorial před 6 roky
FactorialTest.java initial commit před 6 roky
IntegerPrinter.class completed IntegerPrinter and Factorial před 6 roky
IntegerPrinter.ctxt completed IntegerPrinter and Factorial před 6 roky
IntegerPrinter.java completed IntegerPrinter and Factorial před 6 roky
IntegerPrinterTest.class completed IntegerPrinter and Factorial před 6 roky
IntegerPrinterTest.ctxt completed IntegerPrinter and Factorial před 6 roky
IntegerPrinterTest.java initial commit před 6 roky
LargestInteger.class lab submission před 6 roky
LargestInteger.ctxt save1 před 6 roky
LargestInteger.java lab submission před 6 roky
LargestIntegerTest.class save1 před 6 roky
LargestIntegerTest.ctxt save1 před 6 roky
LargestIntegerTest.java initial commit před 6 roky
NormalizeAngle.class lab submission před 6 roky
NormalizeAngle.ctxt lab submission před 6 roky
NormalizeAngle.java lab submission před 6 roky
NormalizeAngleTest.class save1 před 6 roky
NormalizeAngleTest.ctxt save1 před 6 roky
NormalizeAngleTest.java initial commit před 6 roky
README.md initial commit před 6 roky
ShortCalculator.class lab submission před 6 roky
ShortCalculator.ctxt lab submission před 6 roky
ShortCalculator.java lab submission před 6 roky
ShortCalculatorTest.class lab submission před 6 roky
ShortCalculatorTest.ctxt lab submission před 6 roky
ShortCalculatorTest.java lab submission před 6 roky
package.bluej lab submission před 6 roky

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.