Computer Science, asked by surya68989, 4 months ago

4. class Output
{
static void main()
{
int a=12,b=13,c;
c=a++ + ++a/7 + b++;
System.out.println(a+"\t"+b+""+c);
C=++a + a++/3 + ++b;
System.out.println(a+"\t"+b+"\t"+c);
}
}​

Answers

Answered by olamideolajuyi19
0

Explanation:

error: Uncaught ReferenceError: main is not defined

Similar questions