|
Post by Hauskaz on May 14, 2008 19:21:40 GMT -5
import java.awt.*; import hsa.Console;
class OneDimensionArrays5 { static Console c = new Console(); public static void main(String someVarThatAlwaysGoesHere[]) { String tools[] = {"hammer", "screwdriver", "wrench", "pliers", "crowbar", "soldering iron", "wire strippers", "Danny", "drill", "exacto knife"}; String input; boolean flag; while(true) { c.print("Enter the name of a tool: "); input = c.readLine(); flag = false; for(int i = 0; i < 10; i ++) if(input.equalsIgnoreCase(tools[i])) flag = true; if(flag == true) if(input.charAt(input.length() - 1) == 's') c.println("There are " + input + " in the drawer."); else c.println("There is a " + input + " in the drawer."); else if(input.charAt(input.length() - 1) == 's') c.println("There are no " + input + " in the drawer."); else c.println("There is not a " + input + " in the drawer."); } } }
|
|
|
Post by Mikhail Kalashnikov on May 14, 2008 19:24:16 GMT -5
Will this program be available for download? I can see where it would come in useful.
|
|
|
Post by Hauskaz on May 14, 2008 19:26:13 GMT -5
You are free to compile it yourself.
|
|
|
Post by Mikhail Kalashnikov on May 14, 2008 19:30:21 GMT -5
Fat chance.
|
|
|
Post by Hauskaz on May 14, 2008 19:31:22 GMT -5
Next time you need to check the contents of an imaginary drawer, don't come crying to me.
|
|
|
Post by Mikhail Kalashnikov on May 14, 2008 19:35:44 GMT -5
|
|
|
Post by hellomeow on May 14, 2008 20:12:48 GMT -5
Two-dimensional arrays are more fun. Also checking for stupid things in the drawer with poor grammar.
There is no such thing as penises in the drawer. There is such thing as profilactics in the drawer. There is no such thing as drawer in the drawer. There is such thing as Yellow Magic Orchestra in the drawer.
|
|
|
Post by Hauskaz on May 14, 2008 21:04:13 GMT -5
I'm surprised no one caught the real reason I pasted this.
gg
|
|
|
Post by hellomeow on May 14, 2008 21:29:44 GMT -5
String tools[] = {"hammer", "screwdriver", "wrench", "pliers", "crowbar", "soldering iron", "wire strippers", "Danny", "drill", "exacto knife"};
|
|