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]1 Replies - 27 Views - Last Post: Yesterday, 10:23 PM
#1
Reputation: 0
- Posts: 1
- Joined: Yesterday, 09:55 PM
Posted Yesterday, 10:09 PM
I can't get this problem to display like I want. Been working on it all day.I need to prompt a user to make a choice for a pizza size S, M, L, or X - and then display the price as 6.99, 8.99, 12.50, or 15.00. Also display and error message if the user enters an invalid pizza size.
This is what I have, I don't know what else to do Brain is fried. Any help is greatly appreciated.
import java.util.Scanner; public class PizzaChoice { public static void main(String[] args) { final int NUMBER_OF_CHOICES = 4; String[] pizzaSize = {"S", "M", "L", "X"}; double[] prices = {6.99, 8.99, 12.50, 15.00}; String sizeChosen; double pizzaPrice = 0.0; boolean validChoice = false; Scanner inputDevice = new Scanner(System.in); System.out.print("Enter pizza size- S, M, L, or X: "); sizeChosen = inputDevice.nextLine(); for(int s = 0; s < NUMBER_OF_CHOICES; ++s) { if(sizeChosen == pizzaSize[s]); { validChoice = true; pizzaPrice = prices[s]; } } if(validChoice) System.out.println("The price for chosen size " + sizeChosen + " is $" + pizzaPrice); else System.out.println("Sorry - Invalid Choice Entered"); } }
This post has been edited by macosxnerd101: Yesterday, 10:20 PM
Reason for edit:: code tags, use'em (modi123_1); Added a descriptive title (macosxnerd101)
Is This A Good Question/Topic? 0
Replies To: Pizza Choice Program
#2
Reputation: 9037
- Posts: 33,523
- Joined: 27-December 08
Re: Pizza Choice Program
Posted Yesterday, 10:23 PM
Parallel arrays are a bad design choice. Design a Pizza class to encapsulate the attributes size and price. Then store a single array of Pizza objects. My tutorial Moving Away From Parallel Arrays provides a good design and starting point that I think you will find useful.Page 1 of 1
Source: http://www.dreamincode.net/forums/topic/321581-pizza-choice-program/
sassafras mardi gras 2012 the secret world of arrietty cee lo allen iverson jr smith chris anderson
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.