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.