Progressive Java .net

Java tutorial for beginners

Mapa

  • Summary
  • Basics
  • Flux Control
  • Object-Oriented
  • Methods
  • Data Structure
  • Graphics and 2D

Flux Control


Loopings, Flux and Statements Control

01. How to use IF and ELSE: Testing and Controlling which will run
    Application: Say if you got straight approval, or have to do recovery test or failed
    Application: Determines the roots of a second degree equation
    Video lesson: Java Video lesson - How to use the conditional test IF ELSE
02. Questions about IF ELSE use
03. Math Operators Increment (++) and Decrement (--)
04. Assignment Operators: +=, -=, *=, /= and %=
05. Assignment operators and increment and decrement: differences between a=b++ and a=++b
06. The while loop: what it is, how to use and calculating AP and GP series with while
07. Infinite loop, controlling loops and loops with while statement
    7.1 Exercises about the while looping
08. Control Statement for: having better control over repetitions
    8.1 Exercises about control statement for
09. The do while loop: the control statement that always happens..at least once
10. The break and continue commands: interrupting and changing flows and loops
11. switch command: makind choices in Java
12. Problems involving control statement: if, else, while, for, do while and switch
      Exercise: Program that says how many days the month has
      Video lesson: using loop and control statements WHILE, FOR, DO WHILE and SWITCH

Game: How to program the Battleship game in Java

Marcadores: Flux Control, Operators, Statements, Types

No comments:

Post a Comment

Newer Post Older Post Home
Subscribe to: Post Comments (Atom)

Best Java Tutorials

  • Battleship game in Java: How to program
    Now, that we already learned how to pass arrays (of any size) for methods, we can do something more useful. Let's do the famous game ...
  • Java Math: Addition, Subtraction, Multiplication, Division, Division Rest (module) and operator precedence
    What the result of  1 + 2 x 2? For us, it may be 5 or 6. To Java is always 5. If you make the sum firstis 6: 1 + 2  = 3 and 3 x 2 = 6 If...
  • How to make a Tic Tac Toe (noughts and crosses) game in Java
    It's time to put our knowledge into practice to do something really cool and useful: The Tic Tac Toe game in Java! Also known as nough...
  • set and get: what they are and how to use these methods correctly
    We will learn this lesson of our online Java course the two methods most commonly used by Java programmers: the getters and setters.  
  • Game: How to make a Minesweeper in Java
    Continuing the games we're doing, and teaching how to do, now we'll show you how to program the famous Minesweeper game in Java....
  • Arrays in Methods: pass by value and pass by reference
    We saw in our Java course  that there is a section just for methods, and we are in another section of the course just to arrays. There are...
  • Arrays in Java: how to declare, use and access its elements
    In this introductory article of Arrays of our online Progressive Java course , you will learn how to declare and use arrays, or vectors, in...
  • Application: Simulation simple bank account
    Application: Bank account / ATM simple Java   Create a prototype of an ATM in Java programming language .   Earlier, it asks your name and...
  • Commented code about how to create a Tic Tac Toe Game in Java!
    In one last tutorial we show a print of Tic Tac Toe in Java, in a text mode and Human x Human, as well as the code of 6 classes needed to ru...
  • Multidimensional Array or Matrix: Array of arrays
    You saw in the last Java tutorial of our course that an array is a set of variables of the same type. However, we could also declare a s...