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

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.