Custom Search

Friday 14 September 2012

An Integrated Approach To Software Engineering - Pankaj jalote

Front Cover
Details the different activities of software development with a case-study approach whereby a project is developed through the course of the book The sequence of chapters is essentially the same as the sequence of activities performed during a typical software project.


Click Here To Download
Read more

Wednesday 12 September 2012

Thermodynamics An Engineering Approach 5th Edition Cengel Boles [EBook]

Read more

Sunday 9 September 2012

JAVA program to find greatest of 2 numbers

Author: Sanif S S
Site: theeduzone.blogspot.com
Email: sanifss@gmail.com





<
 import java.util.*;
 class Greatest2
{
public static void main(String[] ar)
{
Scanner s=new Scanner(System.in);
int a,b;
System.out.println(“Enter 2 numbers”);
a=s.nextInt();
b=s.nextInt();
if(a>b)
System.out.println(“A is Greater”);
else if(a==b)
System.out.println(“Both are equal”);
else
System.out.println(“B is Greater”);

}



Read more

LinkWithin

Related Posts Plugin for WordPress, Blogger...