Sum of two No.
class Addition
{
public static void main(String[] args)
{
int a=10, b=20, c=0;
c=a+b;
System.out.println("Sum: "+c);
}
}
December 18, 2017 Unknown
class Addition
{
public static void main(String[] args)
{
int a=10, b=20, c=0;
c=a+b;
System.out.println("Sum: "+c);
}
}
0 comments:
Post a Comment