adds a space between 'go' and 'to' on line 15 and and delete the void modifier on lines 64, 65, and 66

This commit is contained in:
mike 2022-04-04 01:07:48 -04:00
parent d85a74febf
commit bb482c05bb
1 changed files with 33 additions and 33 deletions

View File

@ -61,9 +61,9 @@ int c = a + b;
### PRINTING ### PRINTING
```java ```java
String s = "Happy Coding Folks!!" String s = "Happy Coding Folks!!"
void System.out.print(String s) //print s System.out.print(String s) //print s
void System.out.println(String s) //print s, followed by a newline System.out.println(String s) //print s, followed by a newline
void System.out.println() //print a newline System.out.println() //print a newline
``` ```
### PARSING COMMAND-LINE ARGUMENTS ### PARSING COMMAND-LINE ARGUMENTS