#32 dmjpub

Открыто
dmjpub хочет смерджить 1 коммит(ов) из dmjpub/ZCW-BasicComputations-BlueJ:master в master
25 измененных файлов: 130 добавлений и 20 удалений
  1. Двоичные данные
      Factorial.class
  2. 5
    0
      Factorial.ctxt
  3. 6
    2
      Factorial.java
  4. Двоичные данные
      FactorialTest.class
  5. 7
    0
      FactorialTest.ctxt
  6. Двоичные данные
      IntegerPrinter.class
  7. 11
    0
      IntegerPrinter.ctxt
  8. 9
    4
      IntegerPrinter.java
  9. Двоичные данные
      IntegerPrinterTest.class
  10. 11
    0
      IntegerPrinterTest.ctxt
  11. Двоичные данные
      LargestInteger.class
  12. 7
    0
      LargestInteger.ctxt
  13. 21
    3
      LargestInteger.java
  14. Двоичные данные
      LargestIntegerTest.class
  15. 9
    0
      LargestIntegerTest.ctxt
  16. Двоичные данные
      NormalizeAngle.class
  17. 9
    0
      NormalizeAngle.ctxt
  18. 12
    3
      NormalizeAngle.java
  19. Двоичные данные
      NormalizeAngleTest.class
  20. 9
    0
      NormalizeAngleTest.ctxt
  21. Двоичные данные
      ShortCalculator.class
  22. 3
    0
      ShortCalculator.ctxt
  23. Двоичные данные
      ShortCalculatorTest.class
  24. 3
    0
      ShortCalculatorTest.ctxt
  25. 8
    8
      package.bluej

Двоичные данные
Factorial.class Просмотреть файл


+ 5
- 0
Factorial.ctxt Просмотреть файл

1
+#BlueJ class context
2
+comment0.target=Factorial
3
+comment1.params=value
4
+comment1.target=java.math.BigInteger\ factorialOf(java.lang.Integer)
5
+numComments=2

+ 6
- 2
Factorial.java Просмотреть файл

4
 import java.math.BigInteger;
4
 import java.math.BigInteger;
5
 
5
 
6
 public class Factorial {
6
 public class Factorial {
7
-
7
+    
8
     public BigInteger factorialOf(Integer value){
8
     public BigInteger factorialOf(Integer value){
9
-        return null;
9
+         BigInteger result = BigInteger.ONE;
10
+    for (; value > 1; value--) {
11
+        result = result.multiply(BigInteger.valueOf(value));
12
+    }
13
+    return result;
10
     }
14
     }
11
 
15
 
12
 }
16
 }

Двоичные данные
FactorialTest.class Просмотреть файл


+ 7
- 0
FactorialTest.ctxt Просмотреть файл

1
+#BlueJ class context
2
+comment0.target=FactorialTest
3
+comment1.params=
4
+comment1.target=void\ setUp()
5
+comment2.params=
6
+comment2.target=void\ factorialOfTest()
7
+numComments=3

Двоичные данные
IntegerPrinter.class Просмотреть файл


+ 11
- 0
IntegerPrinter.ctxt Просмотреть файл

1
+#BlueJ class context
2
+comment0.target=IntegerPrinter
3
+comment1.params=value
4
+comment1.target=java.lang.String\ printIntegerAsBinary(int)
5
+comment2.params=value
6
+comment2.target=java.lang.String\ printIntegerAsOctal(int)
7
+comment3.params=value
8
+comment3.target=java.lang.String\ printIntegerAsHexadecimal(int)
9
+comment4.params=args
10
+comment4.target=void\ main(java.lang.String[])
11
+numComments=5

+ 9
- 4
IntegerPrinter.java Просмотреть файл

2
 
2
 
3
 
3
 
4
 public class IntegerPrinter {
4
 public class IntegerPrinter {
5
-
5
+    private String binaryValue;
6
+    private String octalValue;
7
+    private String hexValue;
6
     public String printIntegerAsBinary(int value){
8
     public String printIntegerAsBinary(int value){
7
-        return null;
9
+        binaryValue = Integer.toBinaryString(value);
10
+        return binaryValue;
8
     }
11
     }
9
 
12
 
10
     public String printIntegerAsOctal(int value){
13
     public String printIntegerAsOctal(int value){
11
-        return null;
14
+        octalValue = Integer.toOctalString(value);
15
+        return octalValue;
12
     }
16
     }
13
 
17
 
14
     public String printIntegerAsHexadecimal(int value){
18
     public String printIntegerAsHexadecimal(int value){
15
-        return null;
19
+        hexValue = Integer.toHexString(value);
20
+        return hexValue;
16
     }
21
     }
17
 
22
 
18
     public static void main(String[] args){
23
     public static void main(String[] args){

Двоичные данные
IntegerPrinterTest.class Просмотреть файл


+ 11
- 0
IntegerPrinterTest.ctxt Просмотреть файл

1
+#BlueJ class context
2
+comment0.target=IntegerPrinterTest
3
+comment1.params=
4
+comment1.target=void\ setUp()
5
+comment2.params=
6
+comment2.target=void\ printIntegerAsBinaryTest()
7
+comment3.params=
8
+comment3.target=void\ printIntegerAsHexadecimal()
9
+comment4.params=
10
+comment4.target=void\ printIntegerAsOctalTest()
11
+numComments=5

Двоичные данные
LargestInteger.class Просмотреть файл


+ 7
- 0
LargestInteger.ctxt Просмотреть файл

1
+#BlueJ class context
2
+comment0.target=LargestInteger
3
+comment1.params=integers
4
+comment1.target=java.lang.Integer\ findLargestNumberUsingConditional(java.lang.Integer[])
5
+comment2.params=integers
6
+comment2.target=java.lang.Integer\ findLargestNumberUsingMathMax(java.lang.Integer[])
7
+numComments=3

+ 21
- 3
LargestInteger.java Просмотреть файл

2
 
2
 
3
 
3
 
4
 public class LargestInteger {
4
 public class LargestInteger {
5
-
5
+    private Integer maxValue;
6
+    private Integer currentValue;
7
+    private Integer nextValue;
6
     public Integer findLargestNumberUsingConditional(Integer[] integers){
8
     public Integer findLargestNumberUsingConditional(Integer[] integers){
7
-        return null;
9
+        maxValue = 0;
10
+        currentValue = 0;
11
+        nextValue =0;
12
+        for (int i = 0; i < integers.length; i++) {
13
+            currentValue = integers[i];
14
+            if(currentValue > maxValue)
15
+            maxValue = currentValue;
16
+        }
17
+        return maxValue;
8
     }
18
     }
9
 
19
 
10
     public Integer findLargestNumberUsingMathMax(Integer[] integers){
20
     public Integer findLargestNumberUsingMathMax(Integer[] integers){
11
-        return null;
21
+        maxValue = 0;
22
+        currentValue = 0;
23
+        nextValue =0;
24
+        for (int i = 0; i < integers.length-1; i++) {
25
+            currentValue = integers[i];
26
+            nextValue = integers[i + 1];
27
+            maxValue = Math.max(currentValue, nextValue);
28
+        }
29
+        return maxValue;
12
     }
30
     }
13
 }
31
 }

Двоичные данные
LargestIntegerTest.class Просмотреть файл


+ 9
- 0
LargestIntegerTest.ctxt Просмотреть файл

1
+#BlueJ class context
2
+comment0.target=LargestIntegerTest
3
+comment1.params=
4
+comment1.target=void\ setUp()
5
+comment2.params=
6
+comment2.target=void\ findLargestNumberUsingConditionalTest()
7
+comment3.params=
8
+comment3.target=void\ findLargestNumberUsingMathMaxTest()
9
+numComments=4

Двоичные данные
NormalizeAngle.class Просмотреть файл


+ 9
- 0
NormalizeAngle.ctxt Просмотреть файл

1
+#BlueJ class context
2
+comment0.target=NormalizeAngle
3
+comment1.params=angle
4
+comment1.target=java.lang.Integer\ normalizeValueUsingModulo(java.lang.Integer)
5
+comment2.params=integer
6
+comment2.target=java.lang.Integer\ normalizeValueUsingFloorMod(java.lang.Integer)
7
+comment3.params=args
8
+comment3.target=void\ main(java.lang.String[])
9
+numComments=4

+ 12
- 3
NormalizeAngle.java Просмотреть файл

2
 
2
 
3
 
3
 
4
 public class NormalizeAngle {
4
 public class NormalizeAngle {
5
-
5
+    private Integer newAngle;
6
     public Integer normalizeValueUsingModulo(Integer angle){
6
     public Integer normalizeValueUsingModulo(Integer angle){
7
-        return 0;
7
+        // reduce the angle  
8
+        newAngle =  angle % 360; 
9
+
10
+        // force into the minimum absolute value residue class, so that -180 < angle <= 180  
11
+        if (newAngle > 360) { 
12
+        newAngle -= 360; }
13
+        else if(newAngle < 0) {newAngle += 360;}
14
+       
15
+        return newAngle;
8
     }
16
     }
9
 
17
 
10
     public Integer normalizeValueUsingFloorMod(Integer integer){
18
     public Integer normalizeValueUsingFloorMod(Integer integer){
11
-        return 0;
19
+        newAngle = Math.floorMod(integer, 360);
20
+        return newAngle;
12
     }
21
     }
13
 
22
 
14
     public static void main(String[] args){
23
     public static void main(String[] args){

Двоичные данные
NormalizeAngleTest.class Просмотреть файл


+ 9
- 0
NormalizeAngleTest.ctxt Просмотреть файл

1
+#BlueJ class context
2
+comment0.target=NormalizeAngleTest
3
+comment1.params=
4
+comment1.target=void\ setUp()
5
+comment2.params=
6
+comment2.target=void\ normalizeValueUsingModuloTest()
7
+comment3.params=
8
+comment3.target=void\ normalizeValueUsingFloorModTest()
9
+numComments=4

Двоичные данные
ShortCalculator.class Просмотреть файл


+ 3
- 0
ShortCalculator.ctxt Просмотреть файл

1
+#BlueJ class context
2
+comment0.target=ShortCalculator
3
+numComments=1

Двоичные данные
ShortCalculatorTest.class Просмотреть файл


+ 3
- 0
ShortCalculatorTest.ctxt Просмотреть файл

1
+#BlueJ class context
2
+comment0.target=ShortCalculatorTest
3
+numComments=1

+ 8
- 8
package.bluej Просмотреть файл

15
 editor.fx.0.width=0
15
 editor.fx.0.width=0
16
 editor.fx.0.x=0
16
 editor.fx.0.x=0
17
 editor.fx.0.y=0
17
 editor.fx.0.y=0
18
-objectbench.height=101
19
-objectbench.width=1070
20
-package.divider.horizontal=0.6
21
-package.divider.vertical=0.837593984962406
22
-package.editor.height=550
18
+objectbench.height=98
19
+objectbench.width=637
20
+package.divider.horizontal=0.5996275605214153
21
+package.divider.vertical=0.8387096774193549
22
+package.editor.height=539
23
 package.editor.width=968
23
 package.editor.width=968
24
-package.editor.x=59
25
-package.editor.y=82
26
-package.frame.height=723
24
+package.editor.x=186
25
+package.editor.y=23
26
+package.frame.height=709
27
 package.frame.width=1094
27
 package.frame.width=1094
28
 package.numDependencies=4
28
 package.numDependencies=4
29
 package.numTargets=10
29
 package.numTargets=10