Khalil Saboor hace 6 años
padre
commit
776407b8b1
Se han modificado 2 ficheros con 5 adiciones y 5 borrados
  1. BIN
      LargestInteger.class
  2. 5
    5
      LargestInteger.java

BIN
LargestInteger.class Ver fichero


+ 5
- 5
LargestInteger.java Ver fichero

@@ -4,14 +4,14 @@
4 4
 public class LargestInteger {
5 5
 
6 6
     public Integer findLargestNumberUsingConditional(Integer[] integers){
7
-        int i = 0;
7
+        int count = 0;
8 8
         int max = 0;
9
-        for(i = 0; i <integers.length ; i++){
10
-            if(){
11
-                
9
+        for(count = 0; count <integers.length; count++){
10
+            if(integers[count] > max){
11
+                max = integers[count];
12 12
             }
13 13
         }
14
-        return null;
14
+        return max;
15 15
     }
16 16
 
17 17