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 Downlo...
linklist
- homehome
- MG Btech SyllabusMG Btech Syllabus
- C/C++/JAVA ProgrammingC/C++/JAVA Programming
- EBooks,Study MaterialsEBooks,Study Materials
- Aptitude PapersAptitude Papers
- Online Engineering CalculatorsOnline Engineering Calculators

Custom Search
Friday, 14 September 2012
Wednesday, 12 September 2012
Sunday, 9 September 2012
JAVA program to find greatest of 2 numbers
Author: Sanif S S
Site: theeduzone.blogspot.comEmail: 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”);
}
...
Subscribe to:
Posts (Atom)