int a=10,b=20,c=30 a= b+c;b=a+c;c=a+b;
System.out.println("The value is"+a+b+c;
Answer Posted / raja
This program is error.. Missing semicolon in variable
declaration... And the close Bracket of system.out.println
statement is missing...
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are different types of states exist for a thread?
What happens to the Exception object after handling an exception?
how to create daemon thread in java?
What is the difference between comparison done by equals method and == operator?
What is meant by class and object in java?
What is byte code and why is it important to java’s use for internet programming?
How do I remove a character from a string in java?
What are different data structures in java?
What is included in core java?
What is heterogeneous in java?
How many bits is a 64 bit byte?
Which java ide is used the most?
Explain the importance of finally block in java?
What is scanner in java?
What do you mean by local class?