primitive operators | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
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 Antwort
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