Untitled

Anonymous
plain_text
02/01/2023 1:08 AM
452 B
20
Indexable
System.out.print(108);   // printing a number
System.out.print('c');   // printing a character that represents a letter
System.out.print("Q");   // printing a string
System.out.println('3'); // printing a character that represents a digit

System.out.print(22);
System.out.print('E');
System.out.print(8);
System.out.println('1');
Editor is loading...