0% found this document useful (0 votes)
3K views61 pages

Complete Java Handwritten Notes

This document provides an overview of Java programming concepts including arrays, loops, and taking user input. It encourages the viewer to subscribe to the Csegyan YouTube channel for more programming tutorials and examples. Code snippets and explanations are provided for arrays, nested for loops, and using Scanner to take input. The document directs the viewer to leave comments with any questions.

Uploaded by

Rushikesh Vyas
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3K views61 pages

Complete Java Handwritten Notes

This document provides an overview of Java programming concepts including arrays, loops, and taking user input. It encourages the viewer to subscribe to the Csegyan YouTube channel for more programming tutorials and examples. Code snippets and explanations are provided for arrays, nested for loops, and using Scanner to take input. The document directs the viewer to leave comments with any questions.

Uploaded by

Rushikesh Vyas
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Welcome to Csegyan youtube channel

Complete java handwritten notes .


Drow a flow chart to find largest of three number
Output:-
Csegyan
we need to create an object of the Scanner class. We can use the object to
take input from the user.
Click here to subscribe my youtube channel
Click here

Revision :-
Output:-
Example:-

Output:-
Output:-
Details:-

Click here to subscribe to my channel


write answer in comments:-
If u like my work please subscribe to my channel cse gyan
Code:-
Example 1: Java Nested for Loop:-

the loop, we can create another loop to iterate 7 times (7 days).


Example:-
Click here to subscribe my Youtube channel:- Csegyan
Note: Array indexes start with 0: [0] is the first element. [1] is the second element, etc.
We can also use a for loop inside another for loop to get the elements of a two-dimensional
array (we still have to point to the two indexes):

You might also like