Skip to content

mfg471/Java-For-Beginners

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

Java-For-Beginners

If you are looking for a free way to effectively learn Java, then this repository is for you! It covers the basic Java topics like:

// System printing
System.out.print("This is a ");
System.out.println("new line sentence");
// Data types
int n = 0;
boolean flag = false;
String s = "Hello, World!"
// In-line comments, like this line.
/*
This goes across many lines
See?
The computer will ignore this
*/
// Importing classes
import java.util.Scanner
// Naming objects
Scanner scan = new Scanner(System.in);
// Writing methods outside "main"
public static void test()
{
  System.out.print("Success");
}

And much more!

This repo is not meant to completely substitute real curriculum-based learning and only scratches at the surface of Java.

From,

mr funny guy

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages