Skip to content

Commit c9eea88

Browse files
committed
add 'Characters' tag and bold terms
1 parent ed24add commit c9eea88

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

content/java/concepts/output/output.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Description: 'The System.out stream allows a Java program to output characters t
44
Subjects:
55
- 'Computer Science'
66
Tags:
7+
- 'Characters'
78
- 'Output'
89
- 'Strings'
910
- 'Print'
@@ -12,4 +13,4 @@ CatalogContent:
1213
- 'paths/computer-science'
1314
---
1415

15-
The `System.out` stream allows a Java program to output characters to the console. It has several methods that allow printing output. Some of the significant ones are listed below.
16+
The **`System.out`** stream allows a Java program to output characters to the console. It has several methods that allow printing output. Some of the significant ones are listed below.

content/java/concepts/output/terms/print/print.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Description: 'Prints its argument to the console.'
44
Subjects:
55
- 'Computer Science'
66
Tags:
7+
- 'Characters'
78
- 'Output'
89
- 'Strings'
910
- 'Print'
@@ -12,7 +13,7 @@ CatalogContent:
1213
- 'paths/computer-science'
1314
---
1415

15-
The `.print()` method prints its argument to the console. Unlike the similar [`.println()`](https://www.codecademy.com/resources/docs/java/output/println) method, `.print()` does not follow its argument with a new line, and any subsequent characters sent to the console will begin wherever the prior `.print()` command left off.
16+
The **`.print()`** method prints its argument to the console. Unlike the similar [`.println()`](https://www.codecademy.com/resources/docs/java/output/println) method, `.print()` does not follow its argument with a new line, and any subsequent characters sent to the console will begin wherever the prior `.print()` command left off.
1617

1718
## Syntax
1819

content/java/concepts/output/terms/printf/printf.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Description: 'Prints output to the console using various formatting commands.'
44
Subjects:
55
- 'Computer Science'
66
Tags:
7+
- 'Characters'
78
- 'Output'
89
- 'Strings'
910
- 'Print'
@@ -12,7 +13,7 @@ CatalogContent:
1213
- 'paths/computer-science'
1314
---
1415

15-
The `.printf()` method prints output to the console with the use of various formatting commands.
16+
The **`.printf()`** method prints output to the console with the use of various formatting commands.
1617

1718
## Syntax
1819

content/java/concepts/output/terms/println/println.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Description: 'Prints its argument to the console followed by a new line.'
44
Subjects:
55
- 'Computer Science'
66
Tags:
7+
- 'Characters'
78
- 'Output'
89
- 'Strings'
910
- 'Print'
@@ -12,7 +13,7 @@ CatalogContent:
1213
- 'paths/computer-science'
1314
---
1415

15-
The `.println()` method prints its argument to the console follwed by a new line. It is probably the most common method of displaying output to the console.
16+
The **`.println()`** method prints its argument to the console follwed by a new line. It is probably the most common method of displaying output to the console.
1617

1718
## Syntax
1819

0 commit comments

Comments
 (0)