primitive operators | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

primitive operators

fill in the blank to print the sum of the two variable int x = 2; int y = 4; int result = x system.out.printLn( )

30th Jul 2021, 6:10 AM
Rashed Khan
1 Answer
0
Java is syntactically and grammatically strict here System class of first letter should be in capital and Ln l should be small. int x = 2; int y = 4; int result = x +y; System.out.printLn( result );
30th Jul 2021, 6:25 AM
A S Raghuvanshi
A S Raghuvanshi - avatar