| List of Books with URLs | |||
|---|---|---|---|
| List of Books with URLs | Java Ivor Horton's Beginning Java 2, JDK 5 Edition http://www.4shared.com/file/1342344/35c59732/beginningjava2jdk5edition-2004wrox-ivorhortons.html?s=1 http://www.amazon.com/Ivor-Hortons-Beginning-Java-JDK/dp/0764568744/ref=sr_1_1?s=books&ie=UTF8&qid=1278699963&sr=1-1 |
Beginning Visual C# 2010 http://hotfile.com/dl/45949952/328ddec/BVCSharp2010.rar.html http://www.amazon.com/Beginning-Visual-2010-Wrox-Programmer/dp/0470502266/ref=sr_1_10?ie=UTF8&s=books&qid=1278699767&sr=1-10 |
Microsoft Visual Basic 2010 Step by Step (Step By Step (Microsoft)) http://turbobit.net/d76gmmtk4ggw.html http://www.amazon.com/Microsoft-Visual-Basic-2010-Step/dp/0735626693/ref=sr_1_3?s=books&ie=UTF8&qid=1278700208&sr=1-3 |
| How to Download eBook Freely Instructions | |||
| How to Download eBook Freely Instructions | First make sure what are you looking for if you don’t want a
specific book then it may easy unless sometimes it may hard to find you
desired book from net other than torrents. First take down your subject on
somewhere and then on Amazon .com find out search TextBox and Select the
Book as in Category then type
"your subject" Then you can find list of quarries just go through them .by above step you can determine the Book's Name, Name of the Author ,and rest of details Now go to Google.com and Type that Book’s name With following Keywords (but don’t type everything just the Name in case the Edition if you want a specific edition you can just skip the first step if you already know the Book's name) "book name" ebook free download Then Select the One of Quarries and visit that site and download Tips: Never trick down to their download links which claim fast or direct download! | ||
| Some Sites can Downlod eBooks from freely | |||
| Some Sites can Downlod eBooks from freely | http://www.ebookee.com/ http://www.knigka.info/ http://books4java.blogspot.com/ http://www.free-ebooks.net/ http://www.getfreeebooks.com/ http://www.ebookdirectory.com/ | ||
| Book Reference Sites | |||
| Book Reference Sites | http://amazon.com/ http://www.wrox.com/ | ||
| CODES | |||
C++ Rounded Header File ; you csan use this header file for rounding the decimal numbers to nearest integeral value : save it as name.h and import to your project file for working on it.!
#include <math.h>
using std::ceil;
using std::floor;
double round(double x){
if(1 == (ceil(x) - x))//32-31.5 ; if it's equal to 1 then an integer value unless proceed
{
return x;//an integeral values
}else
{
return (((ceil(x) - x) <= 0.5)?ceil(x):floor(x));//ceil the largest number ,the floor is the lowest value;the lowest value 0~0.4 represent the max values and 0.5~0.9 represent the lowest values.
}
}
|
|||