Programming
Python
R
Java
C
C++
C#
WEB
HTML
CSS
JavaScript
BootStrap4
jQuery
SVG
MORE
Examples1
Python
GO
R
Java
C
C++
C#
Examples2
Python
R
Java
C
C++
C#
HTML
CSS
JavaScript
BootStrap4
jQuery
SVG
Seo Tools
Code Minifier
Code Beautifier
Language Compiler
Misc Tools
File Converter
References
C
C++
Python
Java
PHP
JavaScript
Examples
Python
R
Java
C
C++
C#
HTML
CSS
JavaScript
BootStrap4
jQuery
SVG
Home
About
Contact
JetPack
Multi Themes-->>
Code it ALL
Scroll TOP
Java While Loop - CodeGK
Δ Java Examples
Comments
Single-Line Comments in Java
Multi-Line Comments in Java
For_loop
Condition Looping in Java
Array Looping in Java
Break in Java
Continue in Java
While_loop
Java While Loop
Class
Class in Java
Object in Java
Data_types
Bytes in Java
Short in Java
Int in Java
Long in Java
Float in Java
Double in Java
Boolean in Java
Char in Java
If_else
If in Java
Else in Java
Else-If in Java
♦ Java While Loop
♣ Example1: Java While Loop
In this example, the program is printing square of integers, up till 5 from 1.
Example
Input:
Run CODE
Reload Code
Copy Code
public class MyClass { public static void main(String[] args) { int num=5; int iter=1; while(iter<=5){ System.out.println(iter*iter); iter+=1; } } }
Output:
While_loop
Java While Loop