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
Sunday, December 12, 2010
PARAMETERISED FUNCTION - sum
class aman
{
public void sum(int a, int b)//parameterised function
{
float c=a+b;
System.out.println("The sum of two numbers is = " +c);
}
}
No comments:
Post a Comment