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 - 51 Views - Last Post: Yesterday, 06:58 PM
#1
Reputation: 0
- Posts: 8
- Joined: 10-March 13
Posted Yesterday, 06:23 PM
Ok, So technically this program works. My problem is my error message is also displayed when I print the information. Can someone help me figure out how to prevent this from happening?/***************************************** Phone Number List ******************************************/ # include <iostream> // i/o stream header # include <cstring> // header file needed to use strstr function using namespace std; /****************** Function Main ******************/ int main () { const int num = 11; // num holds 11 contacts const int length = 100; // Maximum allowable charactersfor each line is 100 // Array contacts[][] holds 11 contacts with phone numbers char contacts[num][length] = { "Becky Warren, 555-1223", "Joe Looney, 555-0097", "Geri Palmer, 555-8787", "Lynn Presnell, 555-1212", "Holly Gaddis, 555-8878", "Sam Wiggins, 555-0998", "Bob Kain, 555-8712", "Tim Haynes, 555-7676", "Warren Gaddis, 555-9037", "Jean James, 555-4949", "Ron Palmer, 555-2783"}; char search[length]; //Array search[] holds user's input //and searches inside the array contacts[][] char *IdContact = NULL; // IdContact points to the user's query inside array contacts[][] int index; // loop counter //Prompts user to search for contacts cout << "To search for your contact's number please enter a name or partial name of the person.\n"; cin.getline(search, length); //user's input //Searches array for matching substring for (index = 0; index < num; index++) { IdContact = strstr(contacts[index], search); if (IdContact != NULL) { cout << contacts[index]; //prints all possible contacts with in the string } } //if no matches are found, display error message; if (IdContact == NULL) cout << "Sorry, No matches were found!"; return 0; }
Is This A Good Question/Topic? 0
Replies To: Phone number List issues.
#2
Reputation: 1779
- Posts: 5,304
- Joined: 05-May 12
Re: Phone number List issues.
Posted Yesterday, 06:37 PM
Your condition on line 52 is incorrect. You should remember between lines 45-47 that you printed out at least one match.
#3
Reputation: 0
- Posts: 8
- Joined: 10-March 13
Re: Phone number List issues.
Posted Yesterday, 06:44 PM
Ok thanks, I check it out. I also got help on another board and it seems like after adding a bool flag during the search it fixed my problems.
#4
Reputation: 1779
- Posts: 5,304
- Joined: 05-May 12
Re: Phone number List issues.
Posted Yesterday, 06:46 PM
Yup. Use of a bool flag is one way of remembering that you found a match.
#5
Reputation: 0
- Posts: 8
- Joined: 10-March 13
Re: Phone number List issues.
Posted Yesterday, 06:46 PM
This is what got it to work:/***************************************** A D.I.C Head 4/14/13 Phone Number List ******************************************/ # include <iostream> // i/o stream header # include <cstring> // header file needed to use strstr function using namespace std; /****************** Function Main ******************/ int main () { bool found = false; // flag to find if contact was found const int num = 11; // num holds 11 contacts const int length = 100; // Maximum allowable charactersfor each line is 100 // Array contacts[][] holds 11 contacts with phone numbers char contacts[num][length] = { "Becky Warren, 555-1223", "Joe Looney, 555-0097", "Geri Palmer, 555-8787", "Lynn Presnell, 555-1212", "Holly Gaddis, 555-8878", "Sam Wiggins, 555-0998", "Bob Kain, 555-8712", "Tim Haynes, 555-7676", "Warren Gaddis, 555-9037", "Jean James, 555-4949", "Ron Palmer, 555-2783"}; char search[length]; //Array search[] holds user's input //and searches inside the array contacts[][] char *IdContact = NULL; // IdContact points to the user's query inside array contacts[][] int index; // loop counter //Prompts user to search for contacts cout << "To search for your contact's number please enter a name or partial name of\nthe person.\n"; cin.getline(search, length); //user's input //Searches array for matching substring for (index = 0; index < num; index++) { IdContact = strstr(contacts[index], search); if (IdContact != NULL) { cout << contacts[index] <<endl; //prints all possible contacts with in the string found = true; //set the flag } } //if flagged as false, no matches are found and error message is displayed; if (!found) cout << "Sorry, No matches were found!"; return 0; }
This post has been edited by Skydiver: Yesterday, 07:54 PM
Reason for edit:: Names have been changed to protect the innocent.
#6
Reputation: 0
- Posts: 8
- Joined: 10-March 13
Re: Phone number List issues.
Posted Yesterday, 06:58 PM
Page 1 of 1
Source: http://www.dreamincode.net/forums/topic/318529-phone-number-list-issues/
Ashley Morrison El Chapo Guzman Christmas Abbott clive davis nba trade thomas robinson nba trades
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.