Khalil Saboor 776407b8b1 Finalcommit hace 6 años
doc commit2 hace 6 años
.DS_Store initial commit hace 6 años
Factorial.class commit1 hace 6 años
Factorial.ctxt commit1 hace 6 años
Factorial.java commit1 hace 6 años
FactorialTest.class commit1 hace 6 años
FactorialTest.ctxt commit1 hace 6 años
FactorialTest.java initial commit hace 6 años
IntegerPrinter.class commit1 hace 6 años
IntegerPrinter.ctxt commit1 hace 6 años
IntegerPrinter.java commit1 hace 6 años
IntegerPrinterTest.class commit1 hace 6 años
IntegerPrinterTest.ctxt commit1 hace 6 años
IntegerPrinterTest.java initial commit hace 6 años
LargestInteger.class Finalcommit hace 6 años
LargestInteger.ctxt commit1 hace 6 años
LargestInteger.java Finalcommit hace 6 años
LargestIntegerTest.class commit1 hace 6 años
LargestIntegerTest.ctxt commit1 hace 6 años
LargestIntegerTest.java initial commit hace 6 años
NormalizeAngle.class commit2 hace 6 años
NormalizeAngle.ctxt commit1 hace 6 años
NormalizeAngle.java commit2 hace 6 años
NormalizeAngleTest.class commit1 hace 6 años
NormalizeAngleTest.ctxt commit1 hace 6 años
NormalizeAngleTest.java initial commit hace 6 años
README.md initial commit hace 6 años
ShortCalculator.class commit1 hace 6 años
ShortCalculator.ctxt commit1 hace 6 años
ShortCalculator.java commit1 hace 6 años
ShortCalculatorTest.class commit1 hace 6 años
ShortCalculatorTest.ctxt commit1 hace 6 años
ShortCalculatorTest.java commit1 hace 6 años
package.bluej commit1 hace 6 años

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.