Determine the output of the following program.
public class PredictOutput1
{
public static void main(String args[])
{
int a = 4, b = 2, C = 3;
System.out.println("Output 1: " + (a = b * c));
System.out.println("Output 2: " + (a = (b
+ (a = (b * c)));
}
}
Answers
Answered by
0
Answer:
No Output
Explanation:
The java program you provided here has so many syntax error....
This is preventing the program from execution...
Similar questions