User:Rts5522/Sample page
Appearance
The first three letters of the American alphabet in Java.
This is the code of how to write the first three letters of the American alphabet in Java code
[edit]Hello, and welcome to this small lesson. In this short lesson you will,
- Learn how to type "ABC" and possibly all text in Java.
How to type "ABC" in Java
[edit]public class Main {
public static void main(String[] args) {
System.out.println("abc");
}
}
Links
[edit]