Shivam Patel 9cfb576f44 much love for shorts 6 years ago
.DS_Store initial commit 6 years ago
Factorial.class much love for shorts 6 years ago
Factorial.ctxt much love for shorts 6 years ago
Factorial.java much love for shorts 6 years ago
FactorialTest.class much love for shorts 6 years ago
FactorialTest.ctxt much love for shorts 6 years ago
FactorialTest.java initial commit 6 years ago
IntegerPrinter.class much love for shorts 6 years ago
IntegerPrinter.ctxt much love for shorts 6 years ago
IntegerPrinter.java much love for shorts 6 years ago
IntegerPrinterTest.class much love for shorts 6 years ago
IntegerPrinterTest.ctxt much love for shorts 6 years ago
IntegerPrinterTest.java initial commit 6 years ago
LargestInteger.class much love for shorts 6 years ago
LargestInteger.ctxt much love for shorts 6 years ago
LargestInteger.java much love for shorts 6 years ago
LargestIntegerTest.class much love for shorts 6 years ago
LargestIntegerTest.ctxt much love for shorts 6 years ago
LargestIntegerTest.java much love for shorts 6 years ago
NormalizeAngle.class much love for shorts 6 years ago
NormalizeAngle.ctxt much love for shorts 6 years ago
NormalizeAngle.java much love for shorts 6 years ago
NormalizeAngleTest.class much love for shorts 6 years ago
NormalizeAngleTest.ctxt much love for shorts 6 years ago
NormalizeAngleTest.java initial commit 6 years ago
README.md initial commit 6 years ago
ShortCalculator.class much love for shorts 6 years ago
ShortCalculator.ctxt much love for shorts 6 years ago
ShortCalculator.java much love for shorts 6 years ago
ShortCalculatorTest.class much love for shorts 6 years ago
ShortCalculatorTest.ctxt much love for shorts 6 years ago
ShortCalculatorTest.java much love for shorts 6 years ago
package.bluej much love for shorts 6 years ago

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.