+2 votes
in Class 12 by kratos

What will be displayed in jTextField1 and jTextField2 after the following code is **** :

int t;

int x;

x = 12;

t =(3*x+ +)/3;

jTextField1. setText("" + t);

jTextField2. setText(" " + x) ;

1 Answer

+4 votes
by kratos
 
Best answer

TextField1 = 12

jTextField2 = 13

...