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]4 Replies - 55 Views - Last Post: Yesterday, 08:10 PM
#1
Reputation: 0
- Posts: 2
- Joined: Yesterday, 06:33 PM
Posted Yesterday, 06:48 PM
I am new to C++ and I am stuck on an assignment and I can not figure out what I am doing wrong for nothing.Here is what I need to do:
In most companies the amount of vacation you receive depends on the number of years you've been with the company. Create a c++ program that will allow the user to enter the number of years and you output the weeks of vacation according to the following:
0 years, 0 weeks vacation
1-5 years, 1 weeks vacation
6-10 years, 2 weeks vacation
11+ years, 3 weeks vacation
Prompt the user if they would like to enter another employee. Also personalize your program by naming your company!
Here is what I have:
#include <iostream> using namespace std; int main( ) { int years; bool tryAgain = true; while ( tryAgain == true ) { cout << "How many years have you been with us?\n"; cin >> years; if (years = 0) { cout << Sorry, no vacation days yet available\n; } else if (years >= 5 ) { cout >> Congratulations, you have 1 week Vacation!\n"; } } else if (years <5 >10 ) { cout >> Congratulations, you have 2 week Vacation!\n"; } } else if (years <11 100 ) { cout >> Congratulations, you have 3 week Vacation!\n"; } char choice; cout << "Would another employee like to enter their data? <y/n> : "; cin >> choice; if ( choice == 'n' || choice == 'N' ) { tryAgain = false; } } return 0; }
Can someone PLEASE tell me what I am doing wrong so I can fix it correctly? Any help will be greatly appreciated!!!!
Is This A Good Question/Topic? 0
Replies To: Very new to C++ Please help!
#2
Reputation: 2488
- Posts: 8,539
- Joined: 08-August 08
Re: Very new to C++ Please help!
Posted Yesterday, 07:01 PM
You don't say what the issue is, but I noticed that on line 16 you're using an assignment = where you want to use a comparison operator ==.
#3
Reputation: 3072
- Posts: 9,337
- Joined: 25-December 09
Re: Very new to C++ Please help!
Posted Yesterday, 07:08 PM
So what seems to be the problem with your program? Please ask specific questions.Jim
#4
Reputation: 0
- Posts: 2
- Joined: Yesterday, 06:33 PM
Re: Very new to C++ Please help!
Posted Yesterday, 07:22 PM
It is not working correctly. For instance, on line 18, it keeps giving me an error that says cout is undefined, and I do not know what that means.Im basically wanting someone to help me figure out what is right, what is wrong, am i using the right comparison operators? Why am I getting error(s)? etc.
Thanks!
#5
Reputation: 3072
- Posts: 9,337
- Joined: 25-December 09
Re: Very new to C++ Please help!
Posted Yesterday, 08:10 PM
On line 18 look at the direction of the >>Quote
Im basically wanting someone to help me figure out what is right, what is wrong,
This a job for your compiler, if you get compile errors post the complete error messages exactly as they appear in your development environment. These warnings and errors tell you the where and why of your errors. Although they can at times be cryptic you need to start learning how to read these messages.
Jim
Page 1 of 1
Source: http://www.dreamincode.net/forums/topic/321937-very-new-to-c-please-help/
ohio state football cyber monday lupus iCarly banana republic gap Victoria Secret
No comments:
Post a Comment