Example
#{example}"); ipb.editor_values.get('templates')['togglesource'] = new Template(""); ipb.editor_values.get('templates')['toolbar'] = new Template(""); ipb.editor_values.get('templates')['button'] = new Template("
Emoticons
"); // Add smilies into the mix ipb.editor_values.set( 'show_emoticon_link', false ); ipb.editor_values.set( 'bbcodes', $H({"snapback":{"id":"1","title":"Post Snap Back","desc":"This tag displays a little linked image which links back to a post - used when quoting posts from the board. Opens in same window by default.","tag":"snapback","useoption":"0","example":"[snapback]100[/snapback]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"topic":{"id":"5","title":"Topic Link","desc":"This tag provides an easy way to link to a topic","tag":"topic","useoption":"1","example":"[topic=1]Click me![/topic]","switch_option":"0","menu_option_text":"Enter the topic ID","menu_content_text":"Enter the title for this link","single_tag":"0","optional_option":"0","image":""},"post":{"id":"6","title":"Post Link","desc":"This tag provides an easy way to link to a post.","tag":"post","useoption":"1","example":"[post=1]Click me![/post]","switch_option":"0","menu_option_text":"Enter the Post ID","menu_content_text":"Enter the title for this link","single_tag":"0","optional_option":"0","image":""},"spoiler":{"id":"7","title":"Spoiler","desc":"Spoiler tag","tag":"spoiler","useoption":"0","example":"[spoiler]Some hidden text[/spoiler]","switch_option":"0","menu_option_text":"","menu_content_text":"Enter the text to be masked","single_tag":"0","optional_option":"0","image":""},"acronym":{"id":"8","title":"Acronym","desc":"Allows you to make an acronym that will display a description when moused over","tag":"acronym","useoption":"1","example":"[acronym='Laugh Out Loud']lol[/acronym]","switch_option":"0","menu_option_text":"Enter the description for this acronym (EG: Laugh Out Loud)","menu_content_text":"Enter the acronym (EG: lol)","single_tag":"0","optional_option":"0","image":""},"hr":{"id":"12","title":"Horizontal Rule","desc":"Adds a horizontal rule to separate text","tag":"hr","useoption":"0","example":"[hr]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"1","optional_option":"0","image":""},"php":{"id":"14","title":"PHP Code","desc":"Allows you to enter PHP code into a formatted/highlighted syntax box","tag":"php","useoption":"0","example":"[php]$variable = true;\n\nprint_r($variable);[/php]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"html":{"id":"15","title":"HTML Code","desc":"Allows you to enter formatted/syntax-highlighted HTML code","tag":"html","useoption":"0","example":"[html]\n \n[/html]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"sql":{"id":"16","title":"SQL Code","desc":"Allows you to enter formatted/syntax-highlighted SQL code","tag":"sql","useoption":"0","example":"[sql]SELECT p.*, t.* FROM posts p LEFT JOIN topics t ON t.tid=p.topic_id WHERE t.tid=7[/sql]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"xml":{"id":"17","title":"XML Code","desc":"Allows you to enter formatted/syntax-highlighted XML code","tag":"xml","useoption":"0","example":"[xml]5 Replies - 64 Views - Last Post: Today, 10:07 PM
#1
Reputation: 0
- Posts: 17
- Joined: 10-March 13
Posted Today, 12:15 PM
// NOTE: for some reason I am getting the 'cannot find symbol error' // for line 17...also, am I doing the if else correctly for boolean types? // This program will ask the user his/her gender and age // and will print out results using a nested if else import java.util.Scanner; class NestedIfElse2 { // not finished yet...for nest public static void main(String[] args){ //create variables boolean boy = true; boolean girl = false; // if the user enters girl, then it will be false, cuz girls dont play Pokemon LOL! System.out.println("Hello, my name is Professor Oak. Are you a boy or girl: ?"); String gender = input.next(); System.out.println("Right! Now, how old are you: ?"); int age = input.nextInt(); int old = 100; int adult = 20; int baby = 10; //create nest if(gender.equals(true)){ System.out.println("So you're telling me that you are a boy? Got it!"); } else if(gender.equals(false)){ System.out.println("Girls play video games...?"); } else{ // if they do not input boy or girl System.out.println("You must be a pokemon!"); } } }
Is This A Good Question/Topic? 0
Replies To: Boolean types in If Else Statements
#2
Reputation: 5421
- Posts: 8,717
- Joined: 19-March 11
Re: Boolean types in If Else Statements
Posted Today, 12:20 PM
String gender = input.next();
What's an input? You don't seem to have declared this.
#3
Reputation: 0
- Posts: 17
- Joined: 10-March 13
Re: Boolean types in If Else Statements
Posted Today, 07:08 PM
jon.kiparsky, on 20 May 2013 - 12:20 PM, said:
String gender = input.next();
What's an input? You don't seem to have declared this.
Thank you, you're right! But, now when I run it (if I enter boy or girl for the the gender) it prints out the ELSE statement...why is this? I have never used the boolean true/false statements before and I want to know how to do it .
#4
Reputation: -2
- Posts: 8
- Joined: 04-March 11
Re: Boolean types in If Else Statements
Posted Today, 07:28 PM
The problem lies in this line:if(gender.equals(true))
You're trying to use a method that compares String values.
What you will want to do is change the lines like that to one of the following:
Option 1:
if(gender == true)
This will check if your boolean value in gender is true.
Or, Option 2:
if(gender)
This does the same thing as option one, and evaluates whether or not the value is true as well.
Was This Post Helpful? -1
#5
Reputation: 8021
- Posts: 31,132
- Joined: 06-March 08
Re: Boolean types in If Else Statements
Posted Today, 07:38 PM
PudgeCo, on 20 May 2013 - 10:28 PM, said:
What you will want to do is change the lines like that to one of the following:Option 1:
if(gender == true)
This will check if your boolean value in gender is true.
Or, Option 2:
if(gender)
This does the same thing as option one, and evaluates whether or not the value is true as well.
Completly false.
gender is a String it can'be be == true of if(gender)
maybe if(gender.equals("true"))
#6
Reputation: 5421
- Posts: 8,717
- Joined: 19-March 11
Re: Boolean types in If Else Statements
Posted Today, 10:07 PM
pbl, on 20 May 2013 - 09:38 PM, said:
gender is a String it can'be be == true of if(gender)
And therefore .equals returns false when you compare a String to a boolean, so it fails.
You might do something like
if (gender.equals("boy") { // ... }
but there will be some complications. Play with it.
Page 1 of 1
Source: http://www.dreamincode.net/forums/topic/321458-boolean-types-in-if-else-statements/
lollapalooza emma watson Jaromir Jagr Shain Gandee mlb yankees Bb&t
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.