소스 검색

Finalcommit

Khalil Saboor 6 년 전
부모
커밋
776407b8b1
2개의 변경된 파일5개의 추가작업 그리고 5개의 파일을 삭제
  1. BIN
      LargestInteger.class
  2. 5
    5
      LargestInteger.java

BIN
LargestInteger.class 파일 보기


+ 5
- 5
LargestInteger.java 파일 보기

@@ -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