BlueJ Programs for ICSE and ISC
BlueJ Programs
Home
Programs
Data Types
Addition of two Variables
This Program adds two variables a & b and gives out the result.
class Sum
// By Steve
{
public static void main()
{
int a=10;
int b=25;
System.out.println(a+b);
}
}
No comments:
Post a Comment
Home
Subscribe to:
Posts (Atom)
No comments:
Post a Comment