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 - 59 Views - Last Post: Today, 08:40 PM
#1
Reputation: 0
- Posts: 11
- Joined: 02-May 13
Posted Today, 05:14 PM
I'm trying to do a program that hides a message in five words. Uses one of the characters in the five input strings to spell out one new word. Like a secret message. I've started the code, but am just confused on what exactly I'm getting wrong. I am a beginner, but really want to know this. Not looking for answers just guidance of some sort. Thanks in advance.#include <iostream> // For std::cout, std::cin, std::endl #include <string> // For std::string #include <cstdlib> #include <cmath> using namespace std; // Allow cout, cin, endl, string instead of // std::cout, std::cin, std::endl, std::string int main() { string word1 = "word1 "; string word2 = "word2 "; string word3 = "word3 "; string word4 = "word4 "; string word5 = "word5 "; int int1 = 0; int int2 = 0; int int3 = 0; int int4 = 0; int int5 = 0; int code = 0; string ("word1, word2, word3, word4, word5"); cout << "Enter five words: "; cin >> word1 >> word2 >> word3 >> word4 >> word5; cout << "Enter five integers: "; cin >> int1 >> int2 >> int3 >> int4 >> int5; string (word1 + word2 + word3 + word4); string.subtr(int2, 5); cout << cout << "Secret message: " << word1.substr( int1, 1) << word2.substr( int2, 1); system("pause"); return 0; }
Is This A Good Question/Topic? 0
Replies To: Running a Cryptography: Secret Message
#2
Reputation: 1916
- Posts: 5,725
- Joined: 05-May 12
Re: Running a Cryptography: Secret Message
Posted Today, 05:47 PM
I think you need to give us sample input and expected output, because it's not clear in your code exactly what you are trying to do.
#3
Reputation: 0
- Posts: 11
- Joined: 02-May 13
Re: Running a Cryptography: Secret Message
Posted Today, 06:05 PM
The output should look like this:Enter five words: cheap energy can cause problems
Enter five integers: 4 2 1 0 5
Secret message: peace
Italics are user inputs
#4
Reputation: 0
- Posts: 11
- Joined: 02-May 13
Re: Running a Cryptography: Secret Message
Posted Today, 07:37 PM
Am I way off on this? I at least hope I have the right idea.
#5
Reputation: 1916
- Posts: 5,725
- Joined: 05-May 12
Re: Running a Cryptography: Secret Message
Posted Today, 08:24 PM
You don't need string::substr(). All you need is the string::at(), or the [] operator.Here's an example of what you can do with the [] operator:
string alphabet = "abcdefghijklmnopqrstuvwxyz"; cout << alphabet[15] << alphabet[4] << alphabet[0] << alphabet[2] << alphabet[4] << endl;
#6
Reputation: 3049
- Posts: 9,286
- Joined: 25-December 09
Re: Running a Cryptography: Secret Message
Posted Today, 08:40 PM
First you should be using either std::vector or arrays instead of all the separate variables. Next it appears that your numbers corresponds to the index of the string so with the vector of strings of "Cheap", "energy", "can", "cause", "problems" and your vector of int of 4, 2, 1, 0, 5 your secret word would be "Cheap", "energy", "can, "cause", "problems, or "peace". You don't really need to use substr(), just create your secret string from the relevant characters of each string.Jim
This post has been edited by jimblumberg: Today, 08:41 PM
Page 1 of 1
Source: http://www.dreamincode.net/forums/topic/321562-running-a-cryptography-secret-message/
kate walsh cnn debate equatorial guinea marine helicopter crash chicago weather star jones photo of whitney houston in casket
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.