Computer Science, asked by sonakshisangal09, 2 months ago

a=100
b=200
c=100
print(a+b+c)

Answers

Answered by BhumiChopra
0

Answer:

400

You want a Java program ??

If u want it following is the program.

class print

{

public static void main()

{

int a= 100, b= 200 , c = 100;

System.out.println( a+b+c );

}

}

Answered by hrithuparnaghosh
0

given,a=100,b=200,c=300

Answer:

(a+b+c)

Explanation:

=(100+200+300). =600

Similar questions