Write a program in java to assign three integers and print their sum and products
Answers
Answered by
0
hope it helps you......
Attachments:
Answered by
3
- Write a program in Java to assign three integers and print their sum and product.
So, here is the code given below.
class x
{
public static void main(String s[])
{
int a=5,b=10,c=15;
int p=a*b*c;
int s=a+b+c;
System.out.println("Sum is: "+s);
System.out.println("Product is: "+p);
}
}
Similar questions
Computer Science,
7 months ago
Hindi,
7 months ago
English,
1 year ago
Math,
1 year ago
Computer Science,
1 year ago
Math,
1 year ago
Physics,
1 year ago