-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathP241Class.java
116 lines (107 loc) · 2.12 KB
/
P241Class.java
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
public class P241Class
{
private String sound = "";
private String range_say = "";
private String count = "";
private String word = "";
public int Range = 0;
private int max = 0;
private int sum = 0;
private int z = 0;
////////////////////////////////////////////////
public String alarm(int x)
{
if (x < 1)
{
sound = "ERROR: Try again!";
}
else
{
sound = "ALARM!";
}
return sound;
}
////////////////////////////////////////////////
public int sum100()
{
for (int y = 0; y <= 100; y++)
{
System.out.println (sum);
sum = sum + y ;
}
return sum;
}
////////////////////////////////////////////////
public int maxOfTwo(int x, int y)
{
if (x > y)
{
max = x;
}
if (x < y)
{
max = y;
}
return max;
}
////////////////////////////////////////////////
public int sumRange(int x, int y)
{
if (y < x)
{
Range = 0;
}
if (x > y )
{
Range = y - x;
}
return Range;
}
////////////////////////////////////////////////
public int countA (String x)
{
for (int y = 0; y < x.length();y++)
{
if (x.charAt(y)== 'a')
{
z++;
}
}
return z;
}
////////////////////////////////////////////////
public boolean evenlyDivisible (int x, int z)
{
boolean equal = false;
if(x%z == 0 || z%x ==0 )
{
equal = true;
}
return equal;
}
//////////////////////////////////////////////////////////////
public String reverse (String z)
{
int x = 0;
for (int y = z.length()-1; y >= 0; y--)
{
word+=z.charAt(y);
}
return (word);
}
/////////////////////////////////////////////////////////////
public boolean isIsosceles(int x, int y , int z)
{
Boolean iso = false;
if (x == y || x == z || y==z)
{
iso = true;
}
return iso;
}
/////////////////////////////////////////////////////////////
public int randomInRange (int x, int y)
{
return ((int)(Math.random()*x+y));
}
}