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 - 0 Views - Last Post: 6 minutes ago
#1
Reputation: 0
- Posts: 3
- Joined: Today, 05:53 PM
Posted Today, 06:13 PM
Hello All,I am having some trouble making this program work the way I want it to. I am supposed to calculate the values inside a text file and put them to an an output text file. The program is reading the file just fine, the only problem is if any of the values are less than or equal to 0, I want the program to output "Invalid Data". Instead, the program continues to read the data that is less than 0. I am wondering if anyone would be so kind as to tell me what I am doing wrong with my code. Please help, I'm such a rookie and I could definitely use some saving.
Thanks,
VidKid
#include <iostream> #include <fstream> #include <cmath> using namespace std; int main() { float amt1; float amt2; float amt3; float amt4; float startMiles; float endMiles; float mpg; ifstream inMPG; ofstream outMPG; inMPG.open("inmpg.txt"); if(inMPG.fail()) { cout<<"can't find inmpg.txt"<<endl; return 0; } cout<<"Reading from file"<<endl; inMPG>>amt1>>amt2>>amt3>>amt4>>startMiles>>endMiles; outMPG.open("outmpg.txt"); if(outMPG.fail()) { cout<<"cant find outmpg.txt"<<endl; return 0; } while(!inMPG.eof()) { if (amt1 > 0 || amt2 > 0 || amt3 > 0 || amt4 > 0 || startMiles > 0 || endMiles > 0) { mpg = (endMiles - startMiles)/(amt1+amt2+amt3+amt4); cout<<"wrote to file: outmpg.txt"<<endl; cout<<"For the gallon amounts: "<<amt1<<" "<<amt2<<" "<<amt3<<" "<<amt4<< " "<<endl; cout<<"and a starting mileage of "<<startMiles<<endl; cout<<"and an ending mileage of "<<endMiles<<endl; cout<<"the mileage per gallon is "<<mpg<<endl; cout<<"\n Reading the next set of data"<<endl; inMPG>>amt1>>amt2>>amt3>>amt4>>startMiles>>endMiles; } else { cout<<"Invalid Data"<<endl; } } return 0; }
Is This A Good Question/Topic? 0
Replies To: Need Help With A Program
#2
Reputation: 762
- Posts: 2,380
- Joined: 12-December 12
Re: Need Help With A Program
Posted 48 minutes ago
If you want it to say "Invalid Data" if ANY of the values are less than zero then you have to change your ORs to ANDs:if (amt1 > 0 || amt2 > 0 || amt3 > 0 || amt4 > 0 || startMiles > 0 || endMiles > 0)
#3
Reputation: 0
- Posts: 3
- Joined: Today, 05:53 PM
Re: Need Help With A Program
Posted 30 minutes ago
Okay, I changed the or's to and's, but the program still outputs the values that are less than 0. I attached a photo of it here.while(!inMPG.eof()) { mpg = (endMiles - startMiles)/(amt1+amt2+amt3+amt4); cout<<"wrote to file: outmpg.txt"<<endl; cout<<"For the gallon amounts: "<<amt1<<" "<<amt2<<" "<<amt3<<" "<<amt4<< " "<<endl; cout<<"and a starting mileage of "<<startMiles<<endl; cout<<"and an ending mileage of "<<endMiles<<endl; cout<<"the mileage per gallon is "<<mpg<<endl; if (amt1 <= 0 && amt2 <= 0 && amt3 <= 0 && amt4 <= 0 && startMiles <= 0 && endMiles <= 0) { cout<<"Invalid Data"<<endl; return 0; } cout<<"\n Reading the next set of data"<<endl; inMPG>>amt1>>amt2>>amt3>>amt4>>startMiles>>endMiles; } return 0; }
#4
Reputation: 0
- Posts: 3
- Joined: Today, 05:53 PM
Re: Need Help With A Program
Posted 6 minutes ago
Nevermind, I believe I have found what I was doing wrong. Thank you for your help, much appreciated!
Page 1 of 1
Source: http://www.dreamincode.net/forums/topic/317836-need-help-with-a-program/
Deval Patrick Dedication 4 labor day college football scores khan academy Espn College Football
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.