forked from AllenDowney/ThinkJavaCode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFruit.java
More file actions
44 lines (40 loc) · 1.1 KB
/
Fruit.java
File metadata and controls
44 lines (40 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/**
* Fruit exercise.
* The purpose of this exercise is to practice reading code and recognizing
* the traversal patterns we have learned so far. The following methods
* are hard to read, because instead of using meaningul names for the variables
* and methods, they use the names of fruit.
*
* For each method, write one sentence that describes what the method does, without
* getting into the details of how it works.
*
* For each variable, identify the role it plays.
*/
public class Fruit {
public static int banana(int[] a) {
int kiwi = 1;
int i = 0;
while (i < a.length) {
kiwi = kiwi * a[i];
i++;
}
return kiwi;
}
public static int grapefruit(int[] a, int grape) {
for (int i = 0; i < a.length; i++) {
if (a[i] == grape) {
return i;
}
}
return -1;
}
public static int pineapple(int[] a, int apple) {
int pear = 0;
for (int pine: a) {
if (pine == apple) {
pear++;
}
}
return pear;
}
}