|
Subject:
|
help !! i can not find the code !!
|
|
Posted By:
|
jokeman
|
Post Date:
|
10/1/2005 12:04:39 AM
|
where? where?where ? i really can not find the code of beginning C++ and the book find in wrox.com! the booke write :" you can download the code in wrox.com!" but i can find it! and tell me that i can download the code from :ftp://www.wrox.com but i can not open the ftp! why ? why ?why? who can tell me why ? where the problem is really ? is it a cheat?or.....? i really know !!!!
i love C++
|
|
Reply By:
|
mycplus
|
Reply Date:
|
10/4/2005 7:58:24 AM
|
here are few links to C++ downloads.
http://www.wrox.com/WileyCDA/WroxTitle/productCd-0764574841.html for Professional C++
http://www.wrox.com/WileyCDA/WroxTitle/productCd-0764543881.html Beginning VC++ 6.0
you can also find source codes for C/++ here at
http://mycplus.com/sc.asp
If you dont know hot to Program come to ~*~*~*~*~*~*~*~*~*~*~*~* http://www.mycplus.com/ ~*~*~*~*~*~*~*~*~*~*~*~*
|
|
Reply By:
|
jokeman
|
Reply Date:
|
10/7/2005 6:09:08 AM
|
thank you for the answer of mycplus!
i want the source codes of the Beginning C++
i really why is it? Professional C++/Beginning VC++ 6.0 is not the same of Beginning C++ ~!
what a pity ! feel so badly !
i love C++
|
|
Reply By:
|
c_sky
|
Reply Date:
|
10/15/2005 6:12:20 AM
|
Me too.I cannot find Begining C++ also!
|
|
Reply By:
|
Phoenix8
|
Reply Date:
|
10/19/2005 10:12:29 PM
|
Me too
|
|
Reply By:
|
jokeman
|
Reply Date:
|
10/20/2005 9:16:27 AM
|
no one can tell us how it !
i love C++
|
|
Reply By:
|
Imar
|
Reply Date:
|
10/21/2005 7:04:31 PM
|
quote: no one can tell us how it !
Many people can. In fact, you could have told it yourself, by looking at the FAQs here: http://www.wrox.com/WileyCDA/Section/id-106010.html#what
Eventually, that would have brought you here: http://support.apress.com/code_listing.asp?s=0&view=all where you can download the code for Ivor Horton's Beginning C++.
Cheers,
Imar --------------------------------------- Imar Spaanjaars Everyone is unique, except for me.
|
|
Reply By:
|
mymy828
|
Reply Date:
|
10/25/2005 12:20:06 AM
|
I cannot find Begining C++,too
Can anyone give me the links? Thanks,
|
|
Reply By:
|
Imar
|
Reply Date:
|
10/25/2005 2:37:59 PM
|
Man, did you even *read* my message? Did you follow the link? Did you try Ctrl+F and then look for Beginning C++ on that page?
Imar --------------------------------------- Imar Spaanjaars Everyone is unique, except for me.
|
|
Reply By:
|
Phoenix8
|
Reply Date:
|
10/26/2005 12:21:51 AM
|
Thank you,I find them.
|
|
Reply By:
|
yongfeishan
|
Reply Date:
|
10/31/2005 9:45:27 PM
|
visual c++ is mistake for c++ the right adress is http://www.wrox.com/WileyCDA/WroxTitle/productCd-0764543881,descCd-download_code.html I have download it form here ,it's ture Try!!!
|
|
Reply By:
|
yongfeishan
|
Reply Date:
|
10/31/2005 9:51:42 PM
|
I'am a college student form China My English is not very good,if there is any wrong please tell me I like making friends ,my adress is shanyongfei@hotmail.com
|
|
Reply By:
|
eminson
|
Reply Date:
|
3/23/2006 1:45:06 PM
|
Here is my questions: Write an interactive program for a grocery store which will ask for the transaction year, user's name entering the data and will request from the user total monthly sales for each month through the year. The output will be the total sales per quarter, average quarterly sales, total annual sales and average annual sales.
What am I doing wrong
#include <iostream.h>
int main ( ) {
int transYear, userName, num; double month1,month2,month3,month4,month5,month6,month7,month8,month9,month10,month11,month12; double qrt1, qrt2, qrt3, qrt4, qrtAvg, annlSales, annlAvg;
qrtAvg = (qrt1+qrt2+qrt3+qrt4)/4; annlSales = (month1+month2+month3+month4+month5+month6+month7+month8+month9+month10+month11+month12); annlAvg = (month1+month2+month3+month4+month5+month6+month7+month8+month9+month10+month11+month12)/12;
cout << "Enter transaction year: \n" ; cin >> transYear; cout << "Enter user name: \n"; cin >> userName; cout << "Enter montly sales separated by space: "; cout << endl; cin >> month1>> month2>> month3>> month4>> month5>> month6>> month7>> month8>> month9>> month10>> month11>> month12;
cout << "Sales per quarter are: \n" << qrt1 << "\n"<< qrt2 <<"\n"<< qrt3 <<"\n"<< qrt4; cout << endl; cout << "Average quarterly sales are: \n" << qrtAvg; cout << endl; cout << "Total annual sales are: \n" << annlSales;
return 0;
}
|
|
Reply By:
|
C@uark
|
Reply Date:
|
4/7/2006 7:21:28 AM
|
eminson how many times are you going to post the same question. check one of your other posts
|