Showing posts with label java programming.. Show all posts
Showing posts with label java programming.. Show all posts
Monday, May 3, 2010
java programming
this is a book in java programming 4th edition. This book serves as your guide, as well as, your foundation to be the best java programmer ever.
Labels:
books in programming,
java programming.
Sunday, April 4, 2010
If Statement
if statement is a conditional statement in programming. In this statement we are using the conditonal operators. this is true or false only. if the conditional statement is true the program execute the true statements, if the conditional statement is false the program execute the false statements.
sample program:
this program will show to you if the grade of students is greater than 75 the program will show message "Your passed" else "Sorry your Failed".
import java.io.*;
public class sample
{
public static void main(String args[])
{
int average=75;
if(average>=75)
{
System.out.print("Your Passed");
}
else
{
System.out.print("Your Failed");
}
}
}
sample program:
this program will show to you if the grade of students is greater than 75 the program will show message "Your passed" else "Sorry your Failed".
import java.io.*;
public class sample
{
public static void main(String args[])
{
int average=75;
if(average>=75)
{
System.out.print("Your Passed");
}
else
{
System.out.print("Your Failed");
}
}
}
Subscribe to:
Posts (Atom)