Java Programming Tutorial 29 – Nested while Loops from Techmirrors

Java Programming Tutorial 29 – Nested while Loops from Techmirrors



Check out Pramp: http://www.calebcurry.com/pramp

Let’s talk about nested while loops. Don’t miss it!

Read the blog: http://calebcurry.tech

Instagram: http://instagram.com/CalebCurry
Twitter: http://twitter.com/calebCurry
Facebook: http://bit.ly/CalebCurryFacebook
More content: http://CalebCurry.com
Support me! http://www.patreon.com/calebcurry

~~~~~~~~~~~~~~~Additional Links~~~~~~~~~~~~~~~

Subscribe to my newsletter: http://eepurl.com/-8qtH

Donate!: http://bit.ly/DonateCTVM2.

Artist: ARTISS
Title: Tropical Summer
http://www.hooksounds.com

Java is a programming language developed by Sun in 1995. It is designed to be platform independent. This means that the same program can run regardless of whether you use Windows, MacOS, Linux or a cell phone. To do this there must be a Java interpreter installed on the system where the program should run.
Java allows you to write programs without having to go out and buy something. It only requires some time and patience.

Java can be used for making interactive parts of web sites. It is known as applets. This may be small games or useful tools. Java should not be confused with JavaScript, which can also be used for websites. These are two different things.
Java is OOP. Object Oriented Programming. It’s a slightly different way of thinking than the “old fashioned” programming language. There could for example have two variables X and Y without having defined any relation between them. In OOP, it could be that you have the object “point” which has x and y as variables that determine point coordinates. It’s a little hard to explain very briefly. You probably should try it to understand it.

You can get started with programming Java applications without buying any software. Just as HTML can be written in a plain text editor like notepad in Windows, you can also write Java applications. It just requires that you change the suffix on the file extension from Txt to Java.

/ / Comment
public class HelloWorld
{ public static void main (String [] args)
{ System.out.println (“Hello World!”); } }

The above small program is probably one of the simplest you can make. It prints out the text “Hello World”.

To be able to run your Java program, you need to change it to byte-code. The tool to do this is called JDK, Java Development Kit. The latest version is called JDK 6 Update 23. It can be downloaded free from oracle.com

Now, it is not enough with notepad and compiler. It is also necessary to have a book on Java. There are many sources available on the net.

It is a matter of taste whether you liked the somewhat primitive method of writing in notepad or whether you’d rather use a large package with many utilities and guides. But if you want to learn how to program from scratch, I would recommend this simple tool. It is perhaps inconvenient to write all the code, but you learn something by doing it.


SourceTechmirrors

Read More:

java programming software

java programming pdf

java programming tutorial

java programming for beginners

java programming books

java code

w3schools java

what is java programming used for

Leave a Reply

Your email address will not be published. Required fields are marked *