Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
~4K People Reached
Favorite Forums
Favorite Tags
c++ x 44
Member Avatar for skylinedrifter

#include <iostream> #include <iomanip> using namespace std; int main(); { cout << "***************************************... cout << "** Revenue for Bayou Broadway Theater **\n"; cout << "***************************************... const double balcony = 59.95; const double mezzanine = 99.95; const double orchestra = 139.95; int balconyTickets, mezzanineTickets, orchestraTickets; double balconyRevenue, mezzanineRevenue, orchestraRevenue, totalRevenue; // …

Member Avatar for Slavi
0
194
Member Avatar for skylinedrifter

Was doing this project for school, but i cant get it to run, it's a telephone directory project here's the code [CODE]#include<iostream> #include<fstream> #include<string> #include<iomanip> using namespace std; char getChoice() { char choice; cout<<endl<<"Do you want to look for another? "; cin>>choice; return choice; } void getNames(string &strFName, string &strLName) …

Member Avatar for skylinedrifter
0
164
Member Avatar for skylinedrifter

hey guys need help... Declare an enumeration type consisting of the nine planets in their order by distance from the Sun (Mercury first, Pluto last). Write a value-returning function that converts the name of a planet of the enumeration type declared in Step 1 into the corresponding string. The planet …

Member Avatar for Clinton Portis
0
178
Member Avatar for skylinedrifter

Hey! so my teacher is forgin, as i am and i'm having trouble understanding what he says... here is an assignment i got and im not sure what exactly it's asking. Would be big help if any of you guys could figure out what the question is wanting me to …

Member Avatar for thines01
0
143
Member Avatar for skylinedrifter

Here's the the question... 1. Declare an enumeration type consisting of the nine planets in their order by distance from the Sun (Mercury first, Pluto last). 2. Write a value-returning function that converts the name of a planet of the enumeration type declared in Step 1 into the corresponding string. …

Member Avatar for mrnutty
0
860
Member Avatar for skylinedrifter

Hey fox... got a problem in codding im a newbie at this so take it easy on me ... The question Write a C++ program by completing the following steps: Write a value-returning string function called MonthAbbrev that takes an int value as a parameter. The parameter, month, represents the …

Member Avatar for richieking
0
145
Member Avatar for skylinedrifter

Hello guys... I had an assignment where i needed to find the average temperature.. here is the question This project asks the students to read input data from a file, do some processing, and direct the output onto the screen. Use Visual C++ to write your program. Write a C++ …

Member Avatar for skylinedrifter
0
183
Member Avatar for skylinedrifter

Hey1 fox so last weekend my friend asked if i could help her on her Comp Sci project, Little did she know im not a programming genius. So i've come to the one and only Daniweb for help... here's what she's supposed to do.. Write a C++ program by completing …

Member Avatar for frogboy77
0
109
Member Avatar for skylinedrifter

Hey fox i had a hw problem and im stuck we're supposed to do a payment project and i sort of did the first part but then stuck on the second. Here's what i've done so far... [CODE]#include <iostream> #include <iomanip> #include <cmath> using namespace std; //Program name: Amortize int …

Member Avatar for baldwindc
0
163
Member Avatar for skylinedrifter

Hey guys im trying to write a code to give me Arthimetic mean and standard deviation for 4 Integer values... i don't know what im doing wrong it's not letting me compile any ideas?? [CODE] #include <iomanip> #include <iostream> #include <cmath> using namespace std; int main(void) { int X1; int …

Member Avatar for jhonlarry12
0
187
Member Avatar for mukulbudania

I have made a grid and want to put text on each text block. can it be like some align command in graphics.. which allows us to align the text in each block... plz help me out with this....

Member Avatar for ravenous
0
108
Member Avatar for skylinedrifter

Hey Fox... i wrote the program for finding the Mean of 4 integers (Thanks to Daniweb members) now im faced to also get the standard deviation of those numbers x=sqrt(X1+X2+X3+X4)/3 here's what i've come up with so far... [CODE]#include <iomanip> #include <iostream> #include <cmath> using namespace std; int main(void) { …

Member Avatar for ravenous
0
1K
Member Avatar for skylinedrifter

Hey guys... had a little problem while trying make this little program that would find the mean of 4 integers... here's what i have so far [CODE]#include <iomanip> #include <iostream> #include <cmath> using namespace std; int main(void) { int X1; int X2; int X3; int X4; int X; cout<<"Enter The …

Member Avatar for brainfo
0
140
Member Avatar for skylinedrifter

Hello people! Got a project due tomorrow been at it the whole day still no luck hopping one of you guys could help me out before tomorrow :/ First one...... This is the code [CODE]int main() { const double Tax = 0.0825, Rate = 0.15; int PartNum, Units; double Price, …

Member Avatar for Taywin
0
286