-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFunctionCallAlphabet.java
More file actions
238 lines (204 loc) · 5.28 KB
/
Copy pathFunctionCallAlphabet.java
File metadata and controls
238 lines (204 loc) · 5.28 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
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package assignment_10528808;
/**
*
* @author Mawutor
*/
// Function Call Alphabet - Yet another program to practice functions, but this time it's function calls only.
public class FunctionCallAlphabet
{
public static void main( String[] args )
{
a(); // displays a word beginning with A
b(); // returns the word to be displayed
c(true); // pass it 'true' and it will display a word beginning with C
d(); // displays a word beginning with D
e(9); // pass it the number of letters to display (9)
f("frugal"); // displays the word you pass it beginning with "F"
g(); // returns the word to be displayed
h(1); // tell it how many times to display the word (1)
System.out.println();
i(32); // pass it any integer and it will display a word beginning with I
j(3); // returns a different word depending on what you pass it (1-3)
k(); // displays a word beginning with K
l(false, true); // displays a different word depending on the two booleans you pass it
m(true,false); // displays a different word depending on the two booleans you pass it
n("Noice"); // displays the word you pass it beginning with "N"
o(); // displays a word beginning with O and returns a useless value
p(); // returns the word to be displayed
q(); // displays the word
System.out.println();
r(true); // returns a different word depending on if you pass it 'true' or 'false'
s(6); // pass it the number of letters to display (6)
t("Tantamount" ); // displays the word you pass it beginning with "T"
u( ); // returns the word to be displayed
v(1); // tell it how many times to display the word (1)
w( 5 ); // pass it any integer and it will display a word beginning with W
x( 2 ); // returns a different word depending on what you pass it (1-2)
y( ); // displays a word beginning with Y
z(true,false); // returns a different word depending on which two boolean values you pass it
System.out.println();
}
/**************************************
* Don't change anything below here!! *
*************************************/
public static void a()
{
System.out.print("Ant ");
}
public static String b()
{
return "Banana ";
}
public static void c(boolean doit)
{
if ( doit )
System.out.print("Crocodile ");
}
public static void d()
{
System.out.print("Doggie ");
}
public static void e(int howmany)
{
String s;
s = "Elephant ";
int x = 0;
while ( x < howmany )
{
System.out.print( s.charAt(x) );
x = x+1;
}
}
public static void f(String word)
{
System.out.print(word + " ");
}
public static String g()
{
return "Gorilla ";
}
public static void h(int reps)
{
int x = 0;
while ( x < reps )
{
System.out.print("Horseradish ");
x = x+1;
}
}
public static void i(int ignoredparameter)
{
ignoredparameter = 32;
String space = Character.toString( (char) ignoredparameter );
System.out.print("Ice_cream" + space);
}
public static String j(int whichone)
{
if ( whichone == 1 )
return "Jambalaya ";
else if ( whichone == 2 )
return "Juniper ";
else
return "Jackrabbit ";
}
public static void k()
{
// the bird OR the fruit
System.out.print("Kiwi ");
}
public static void l(boolean a, boolean b)
{
if ( a && b )
System.out.print("Lettuce ");
else
System.out.print("Lhasa_apso ");
}
public static void m(boolean a, boolean b)
{
if ( a || b )
System.out.print("Mango ");
else
System.out.print("Monkey! ");
}
public static void n(String word)
{
System.out.print(word + " ");
}
public static int o()
{
System.out.print("Orangutan ");
return 1; // just for kicks; the return value doesn't mean anything
}
public static String p()
{
return "Parrot ";
}
public static void q()
{
System.out.print("Quail ");
}
public static String r(boolean first)
{
if ( first )
return "Rabbit ";
else
return "Radish ";
}
public static void s(int howmany)
{
String s;
s = "Snake ";
int x = 0;
while ( x < howmany )
{
System.out.print( s.charAt(x) );
x = x+1;
}
}
public static void t(String word)
{
System.out.print(word + " ");
}
public static String u()
{
return "Ugli_fruit ";
}
public static void v(int reps)
{
int x = 0;
while ( x < reps )
{
System.out.print("Valentine_candy ");
x = x+1;
}
}
public static void w(int ignoredparameter)
{
ignoredparameter = 32;
String space = Character.toString( (char) ignoredparameter );
System.out.print("Walrus" + space);
}
public static String x(int whichone)
{
if ( whichone == 1 )
return "X_files ";
else
return "X_men ";
}
public static void y()
{
System.out.print("Yams ");
}
public static String z(boolean a, boolean b)
{
if ( a || b )
return "Zanahorias ";
else
return "Zebra ";
}
}