Results 1 to 5 of 5
- 11-09-2010, 04:57 PM #1
Member
- Join Date
- Oct 2010
- Posts
- 80
- Rep Power
- 0
What Will Print? Just Need Verification
i
What is the output of the program when temperature = 70, month = 5, and name = "Barnard, KS."?Java Code:nt temperature = 78; int month = 6; String name = "Barnard, KS." if (temperature >= 70 && month >=6) System.out.println ("Wear bikini\n"); else if (name == "Barnard, KS.") System.out.println ("Nice day to ride my horse\n");
I say the output is Nice day to ride my horse, because the 1st "if" statement is FALSE and falls through to the second "if" statement. Am I right?
Thanks In Advance
- 11-09-2010, 05:01 PM #2
- Join Date
- Sep 2008
- Location
- Voorschoten, the Netherlands
- Posts
- 11,407
- Blog Entries
- 7
- Rep Power
- 17
You are right here but not for the reasons you're thinking of, change your code to this:
kind regards,Java Code:int temperature = 78; int month = 5; String name = "Barnard, KS." if (temperature >= 70 && month >=6) System.out.println ("Wear bikini\n"); else if (name == new String("Barnard, KS.")) System.out.println ("Nice day to ride my horse\n");
Jos
- 11-09-2010, 05:09 PM #3
Member
- Join Date
- Oct 2010
- Posts
- 80
- Rep Power
- 0
What Will Print? Just Need Verification
Thanks for the quick response. Isn't it true the 1st statement will be FALSE and not execute, and go to the second "else"?
Why do you say "You are right here but not for the reasons you're thinking of, ...".
Thanks JosAH
~~Carol
- 11-09-2010, 05:14 PM #4
- Join Date
- Sep 2008
- Location
- Voorschoten, the Netherlands
- Posts
- 11,407
- Blog Entries
- 7
- Rep Power
- 17
- 11-09-2010, 05:19 PM #5
Member
- Join Date
- Oct 2010
- Posts
- 80
- Rep Power
- 0
Similar Threads
-
Fingerprint verification
By venkateshcoolmoon in forum Advanced JavaReplies: 4Last Post: 02-02-2010, 06:19 PM -
Finger print scanning and verification
By kirly in forum Advanced JavaReplies: 4Last Post: 01-29-2010, 01:24 AM -
jarsigner verification
By karan1989 in forum New To JavaReplies: 1Last Post: 11-12-2009, 12:21 PM -
Image Verification
By peiceonly in forum Java ServletReplies: 2Last Post: 04-04-2009, 07:38 AM -
Input Verification Demo
By Java Tip in forum javax.swingReplies: 0Last Post: 06-26-2008, 07:42 PM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks