This blog is especially aimed for those looking for Java programs that are written in a simple easy code. Blue J users, college, university ICSE students, BCA, B Tech other Under graduates can stand to benefit a lot. Solved questions of ICSE board have been updated
Search This Blog
Saturday, December 11, 2010
Sample Java program I- Addition of two numbers
class add
{
public void sum(int a, int b)
{
int ans= a+b;
System.out.println("The sum is = "+ans);
}
}
No comments:
Post a Comment