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

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.