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]3 Replies - 50 Views - Last Post: Yesterday, 08:04 AM
#1
Reputation: 0
- Posts: 1
- Joined: Yesterday, 07:26 AM
Posted Yesterday, 07:37 AM
HI,I'm in intro C++ and I'm asked to write a program that prompts the user for the name of the file and displays a report.
The file is a gradebook with names of student and grades.
I'm asked to pulled the highest name, lowest name, and their corresponding grades and display them.
I have spent hours with my textbook trying to figure this code out.
This is my code so far:
BTW this is not a copy/paste but rewritten.
#include <iostream> #include <string> #include <fstream> using namespace std; int main() { string student, fileName; cout<< "Enter the fileName: "; cin >> fileName; ifstream inFile (fileName.c_str()); cout << "Reading data from file: \n"; while (inFile >> student){ cout << student << endl; } return 0; }
This post has been edited by jimblumberg: Yesterday, 07:45 AM
Reason for edit:: Added missing code tags. Please learn to use them properly.
Is This A Good Question/Topic? 0
Replies To: How to read a specific line from a file into C++
#2
Reputation: 2873
- Posts: 8,575
- Joined: 25-December 09
Re: How to read a specific line from a file into C++
Posted Yesterday, 07:49 AM
Do you have a question or problem with this code?You may want to study the following tutorial: File IO.
Jim
#3
Reputation: 2438
- Posts: 8,340
- Joined: 08-August 08
Re: How to read a specific line from a file into C++
Posted Yesterday, 07:58 AM
And read up on functions. At a minimum you should have one for reading the file and one for finding/outputting the data you need.
#4
Reputation: 5537
- Posts: 22,163
- Joined: 23-August 08
Re: How to read a specific line from a file into C++
Posted Yesterday, 08:04 AM
And what's the format of the file you're reading?
Page 1 of 1
Source: http://www.dreamincode.net/forums/topic/315284-how-to-read-a-specific-line-from-a-file-into-c/
mario williams vcu unlv sam young ncaa bracket ramon sessions portland trail blazers
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.