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]2 Replies - 59 Views - Last Post: Today, 06:44 AM
#1
Reputation: 0
- Posts: 2
- Joined: Yesterday, 03:03 PM
Posted Yesterday, 03:06 PM
Hi,I'm really new programming in C++ and I need your help.
I have to make a program which has to read from a .dat file a column of 9999 values (like 6548.098976) and from this file find the maximun, minimun and later on make an histogram with 90 intervals.
I have some problems because it read the data but it doesn't find the maximun and minimun, it write 57 for both.
On the other hand, I don't have any idea of how to draw an histogram. It should be something like this:
http://maps4twan.blo.../histogram.html
Here it's my attempt,
#include <iostream> #include <fstream> using namespace std; ifstream::pos_type size; char * memblock; int main () { int n, i, result=0; ifstream file ("data.dat", ios::in|ios::binary|ios::ate); if (file.is_open()) { size = file.tellg(); memblock = new char [size]; file.seekg (0, ios::beg); file.read (memblock, size); file.close(); cout << "the complete file content is in memory"; cout << memblock; for (i=0;i<9999;i++) { if (memblock[i]>result) result=memblock[i]; } cout<<"max numb is:"<<result; for (n=0;n<9999;n++) { if (memblock[n]<result) result=memblock[n]; } cout<<"min numb is:"<<result; } else cout << "Unable to open file"; return 0; }
Thanks
Is This A Good Question/Topic? 0
Replies To: Program from a .dat and histogram
#2
Reputation: 1677
- Posts: 4,887
- Joined: 05-May 12
Re: Program from a .dat and histogram
Posted Yesterday, 04:12 PM
Your memblock is type char. You indicated in your original post that your expected data is floating point. If your .dat file is binary, you'll have to do some casting of data. If your .dat file is actually a text file, then you'll have to do some parsing of data.
#3
Reputation: 0
- Posts: 2
- Joined: Yesterday, 03:03 PM
Re: Program from a .dat and histogram
Posted Today, 06:44 AM
Hi Skydiver,
As I said I'm a noob, so I don't know what I have to change to obtain a result. The .dat file is binary not text file so I think I have to put float instead of char, but I find a lot of compilation errors and I don't know what is the mistake if you could help me I will be very grateful.
Thanks
Page 1 of 1
Source: http://www.dreamincode.net/forums/topic/315335-program-from-a-dat-and-histogram/
Montenegro Olympic Games Dana Vollmer phillies phillies Ryan Dempster Phelps
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.