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

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.