4/12

<PLEASE USE THE FOLLOWING TEMPLATE TO HELP YOU CREATE A GREAT POST!>

<Below this line, add a link to the EXACT exercise that you are stuck at.>

<In what way does your code behave incorrectly? Include ALL error messages.>

```

Replace this line with your code.

<do not remove the three backticks above>

Please post your code :slight_smile:

1 Like

public class DataTypesC {
public static void main(String args) {

	System.out.println();

}

}

Like @bandit said, you should post your code, your error, and what you are struggling with to fix that error. If you are on 4.) Data Types III: char then it is a simple lesson.
1.
In between the parentheses of System.out.println(); type any single character of your choice. Make sure it’s enclosed in single quotes!
So:

System.out.println('A'); 
//put any letter in between single quotes and your good!
2 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.