Given an integer variable count, write a statement that displays the value of count on the screen. Do not display anything else on the screen–just the value of count.
LANGUAGE: JAVA
CHALLENGE:
Given an integer variable count, write a statement that displays the value of count on the screen. Do not display anything else on the screen–just the value of count.
SOLUTION:
System.out.println(count);
Posted in Java, Learn To Code