#14 For loop explained 🔁 | in Tamil | Java tutorial Series 📚 | EMC Academy

Поділитися
Вставка
  • Опубліковано 16 жов 2024
  • In this episode of our Java Tutorial Series, we dive into the intricacies of the for loop, a fundamental construct in Java programming. Join us at EMC Academy as we unravel its syntax, explore its versatility, and provide practical examples to solidify your understanding. Whether you're a beginner or seasoned programmer, this tutorial in Tamil is tailored to help you harness the power of the for loop in Java effectively.
    Java in Tamil.
    Join our 700K+ Instagram community
    www.instagram....

КОМЕНТАРІ • 127

  • @Jenifer-b4l
    @Jenifer-b4l 3 місяці тому +41

    for (int i=5; i>=1; i=i-1) {
    System.out.println(i);
    }

  • @positivemindset612
    @positivemindset612 5 місяців тому +6

    👉👉👉I wanted to express my sincere gratitude for your incredible work on the UA-cam channel. Your tutorials on Java, Python, and interview preparation have been invaluable to me in my learning journey.
    Your clear explanations and engaging teaching style make complex concepts easy to understand and apply. I've learned so much from your videos and they've greatly enhanced my skills in programming and interview preparation.
    Thank you for your dedication to helping others learn and grow in their careers. I'm truly grateful for the impact you've had on my learning experience.😇

  • @NDHANUSH2006
    @NDHANUSH2006 6 місяців тому +19

    Bro asking C programing tutorial like java but you not making it Please make C programing Tutorial ❤

    • @industyle606
      @industyle606 6 місяців тому

      Plz upload C programming tutorial.......

    • @ChandraGanesh-in9rp
      @ChandraGanesh-in9rp 4 місяці тому +4

      I think Emc bro after completion of Java he will upload the c programming but you need c tutorial immediately means pls refer brototype tamil UA-cam channel in that playlist section "100k coding challenge " playlist was there C if u want just refer that

    • @industyle606
      @industyle606 4 місяці тому +1

      @@ChandraGanesh-in9rp tq bro

  • @santhoshram1221
    @santhoshram1221 6 місяців тому +3

    Nice work dear brother ❤❤

  • @sukumara6990
    @sukumara6990 3 місяці тому +5

    for (int i = 5; i

  • @arunraj9732
    @arunraj9732 6 місяців тому +4

    package Exercise_EMC;
    public class Exercise18 {
    public static void main(String args[]){
    for(int i = 10;i>=1;i--){
    System.out.println(i);
    }
    }
    }

  • @Sangeetha-bw9cf
    @Sangeetha-bw9cf 3 дні тому +1

    For(int i=10; i>0;i--)
    {
    System.out.println(i);
    }

  • @PriyaDharshini-z5k
    @PriyaDharshini-z5k 2 місяці тому +2

    your voice is good.Very clarity in explanation :)

  • @shanmugasundarim4430
    @shanmugasundarim4430 3 місяці тому +2

    public static void main(String args[]) public static void main(String args[])
    {
    for ( int i=10;i>=1;i=i-1)
    {
    System.out.print(i);
    }
    }

  • @Akash-wk7ph
    @Akash-wk7ph 6 місяців тому +9

    for(int i=5; i>=1;i- -)
    {
    System.out.println(i);
    }

    • @VigneshVicky-xj9it
      @VigneshVicky-xj9it 4 місяці тому

      i=i-1* varum bro

    • @mageswaran._r_
      @mageswaran._r_ 7 днів тому +1

      Both are same​@@VigneshVicky-xj9it

    • @mageswaran._r_
      @mageswaran._r_ 7 днів тому +1

      ​@@VigneshVicky-xj9iti-- and i=i-1 both are same

    • @VigneshVicky-xj9it
      @VigneshVicky-xj9it 7 днів тому

      @@mageswaran._r_ yeah bro now I know all the core java topics ipodhan idhellam paatha maari iruku adhukula 4 months aagiruchi

  • @DevadharshiniDd-wm9cl
    @DevadharshiniDd-wm9cl Місяць тому +2

    Instead of i=i+1; we can use the increment operator called i++

  • @Anukarthik17
    @Anukarthik17 6 місяців тому +1

    Super work brother. Thank you very much. Really much understanding.

  • @KumaresanDurairaj-r1z
    @KumaresanDurairaj-r1z 20 днів тому

    System.out.println("print reverce 10 to 1 ");
    for(int yum = 10; yum>=1; yum=yum-1){
    System.out.println(yum);
    }

  • @navenshri7954
    @navenshri7954 Місяць тому +1

    thanks for this video bro, really helpful

  • @amirdhamurugan240
    @amirdhamurugan240 2 місяці тому

    Bro Why did you use x: in the System.out.print?

  • @thivyar4549
    @thivyar4549 5 місяців тому +1

    you have explained it in a clear way to understand the for loop. thank you so much for clean and clear explanation video

  • @brainykids9822
    @brainykids9822 4 місяці тому +2

    Thank u brother.. u explained very well

  • @ragavendrar4735
    @ragavendrar4735 5 місяців тому +6

    bro Completed
    public class demo {
    public static void main(String[] args)
    {
    for(int i=10;i>=1;i--)
    {
    System.out.println(i);
    }
    }
    }

  • @i_am_vekatesh
    @i_am_vekatesh 29 днів тому +1

    public static void main(String[] args) {
    for(int i=10; i>=1; i--) {
    System.out.println(i);
    }
    }

  • @kuttymaster8559
    @kuttymaster8559 3 місяці тому +1

    for( int i=10; i>=1;i=-1)

  • @vishnupriya-e9t
    @vishnupriya-e9t 3 місяці тому

    Rely rely super ma very well explation god bless you bro

  • @ChandraGanesh-in9rp
    @ChandraGanesh-in9rp 4 місяці тому

    To print in reverse change i = 5 and then change i into decerement operator(i- -)

  • @AVK-kw9rz
    @AVK-kw9rz Місяць тому

    how to stop infinite loop in vs code terminal (ctrl+c) not working. how do without closing that

  • @AishwaryaLakshmi15
    @AishwaryaLakshmi15 2 місяці тому

    public class loop {
    public static void main(String args[])
    {

    for(int i=5;i>=1;i--){
    System.out.println(i);
    }
    }

    }

  • @sindhup193
    @sindhup193 23 дні тому

    3. public class number_reverse {
    4. public static void main(String args[]){
    5.
    6. for(int j=5;j>0;j--){
    7. System.out.print(" "+j);
    8. }
    9. }
    10. }

  • @RiyazBen-zx8ow
    @RiyazBen-zx8ow Місяць тому +2

    Romba nandri bro😊

  • @SyedIbrahimAbdullah-nw4jw
    @SyedIbrahimAbdullah-nw4jw 5 місяців тому +3

    fro(int i=10;i>=0;i--){
    System.out.println(i);
    }

  • @shanmugamani.m11-a4
    @shanmugamani.m11-a4 Місяць тому

    Bro palindrome program explain pannuga

  • @28_05
    @28_05 4 місяці тому

    for (int i=1;i

  • @abinayatharmarajan29
    @abinayatharmarajan29 2 місяці тому +1

    class Program {
    public static void main(String[] args) {
    for(int i=5;i>=1;i=i-1){
    System.out.println(i);
    }
    }
    }

    • @Ady_NXT
      @Ady_NXT 2 місяці тому +2

      @@abinayatharmarajan29 👍🏻

  • @KeerthiKeerthi-rg7dv
    @KeerthiKeerthi-rg7dv 3 місяці тому +1

    class HelloWorld {
    public static void main(String[] args)
    {
    for(int i=10;i>=1;i=i-1)
    {
    System.out.println(i);
    }
    }
    }

  • @r.gurumoorthi3649
    @r.gurumoorthi3649 Місяць тому

    please can you provide C tutorial video

  • @boredomeditz
    @boredomeditz 2 місяці тому

    class Forloop
    {
    public static void main(String args[])
    {
    for(int i=5;i>=1;i--)
    {
    System.out.println(i);
    }
    }
    }

  • @JeffilAlson
    @JeffilAlson 2 місяці тому

    For( int i=5;I>=1; I=I-1)
    {
    System. Out. Print ln(i);
    }

  • @ManoKarthikeyan-x4m
    @ManoKarthikeyan-x4m 2 місяці тому

    class forloop2
    {
    public static void main(String[] args) {
    for(int i=10;i>=1;i-=1)
    {
    System.out.println(i);
    }
    }
    }

  • @ramyaramesh2336
    @ramyaramesh2336 4 місяці тому

    Class main{
    Public static void main (String args[]){
    for( int i=5; i>=5;i=i-1)
    {
    System.out.println(i);
    }

  • @tn_wolf_25
    @tn_wolf_25 Місяць тому

    for(int i=10;i>=1;i=i-1)
    {
    S.o.pln(i)
    }

  • @vijayashreegunasekaran5292
    @vijayashreegunasekaran5292 Місяць тому

    class demo{
    public static void main(String args[])
    {
    int i;
    for(i=10;i>=1;i--)
    {
    System.out.println(i);
    }
    }
    }

  • @deepthi5838
    @deepthi5838 3 місяці тому

    class number{
    public static void main(String args[]){
    int i=1;
    for(i=1;i

  • @madhanarjun4767
    @madhanarjun4767 2 місяці тому

    class hello{
    public static void main(String args[])
    {
    for(int i=10;i>=1;i=i-1)
    {
    System.out.println(i);
    }
    }
    }

  • @rameshsridhar84
    @rameshsridhar84 Місяць тому

    package org.practice;
    public class ForLoop {
    public static void main(String[] args) {
    for(int i=5;i>=1;i=i-1)
    {
    System.out.println(i);
    }
    }
    }

  • @DevadharshiniDd-wm9cl
    @DevadharshiniDd-wm9cl Місяць тому

    public class Main
    {
    public static void main(String[] args) {
    for(int i=5;i>=1;i--){
    System.out.println(i);
    }
    }
    }

  • @nanthakumaranandan3560
    @nanthakumaranandan3560 3 місяці тому

    class hello{
    public static void main(String args[])
    {
    for (int n =5;n>=1;n=n-1)
    System.out.println(n);
    }
    }

  • @logeshwaran471
    @logeshwaran471 2 місяці тому

    class hello{
    public static void main(String[] args)
    {
    Scanner scan = new Scanner(System.in);
    int a =scan.nextInt();
    int b =scan.nextInt();

    String result = a > b?"yes":"no";
    System.out.println(result);

    }
    }

  • @SkSk-d7l7b
    @SkSk-d7l7b 29 днів тому

    public class Main {
    public static void main(String[] args) {
    for (int i=10; i>=1; i=i-1) {
    System.out.println(i);
    }
    }
    }

  • @coldwindmusic1379
    @coldwindmusic1379 6 місяців тому +1

    class HelloWorld {
    public static void main(String[] args) {
    for(int i=5; i>=1; i--)
    System.out.println(i);
    }
    }

  • @Infoify23
    @Infoify23 Місяць тому

    for(int num=5; num>=1; num=num-1)
    {
    System.out.println(num);
    }

  • @manojsudheer1664
    @manojsudheer1664 2 місяці тому

    for (int i=5; i>=1; i=i--) {
    System.out.println(i);
    }

  • @Code_With_Gowtham
    @Code_With_Gowtham 5 місяців тому +2

    import java.util.*;
    class HelloWorld {
    public static void main(String[] args) {
    for(int i = 10;i>=1;i--){
    System.out.println(i);
    }
    }
    }

  • @krishharish506
    @krishharish506 4 місяці тому

    class demo{
    public static void main(String args[])
    {
    for(int i=10;i>=1;i=i-1)
    {
    System.out.println(i);
    }
    }
    }

  • @info-yv3su
    @info-yv3su 2 місяці тому

    class ben{
    public static void main(String args[]){
    for(int i=5;i>=1;i=i-1){
    System.out.println(i);
    }
    }

    }

  • @selvarasan5322
    @selvarasan5322 4 місяці тому +2

    Good explanation bro ❤

  • @nvsbflims4624
    @nvsbflims4624 5 місяців тому +2

    Bro is this correct for running till 10
    for(int i = 1; i

  • @THARIQ-
    @THARIQ- 2 місяці тому

    Reverse Program Solution
    public class for_loop {
    public static void main(String[] args) {

    for(int i=5;i>=1;i=i-1) {
    System.out.println("Value of i is "+i);
    }
    }
    }

  • @BHARANIDHARANA-k8p
    @BHARANIDHARANA-k8p 9 днів тому

    public class forloop {
    public static void main(String[] args){
    int i = 1;
    for(i=10;i>=1;i--){
    System.out.print(i + ",");
    }
    }
    }

  • @PreethiPriyadharshini369
    @PreethiPriyadharshini369 5 місяців тому

    public class Ternary {
    public static void main(String[] args) {
    for (int i=10;i>=1;i--){
    System.out.println(i);
    }

  • @aktharhanfi6053
    @aktharhanfi6053 2 місяці тому

    public class hello {
    public static void main(String[] args) {
    for(int i=5; i>=1; i=i-1){
    System.out.println(i);
    }
    }
    }

  • @ramyachitra8814
    @ramyachitra8814 5 місяців тому +3

    class demo{
    public static void main(String args[])
    {
    for(int i=10;i>=1;i--)
    {
    System.out.println(i);
    }
    }
    }

  • @arhiarhasudhanselvaraj808
    @arhiarhasudhanselvaraj808 2 місяці тому

    class QA5{
    public static void main(String args[])
    {
    int i;
    for(i=9;i>=0;i=i-1)
    {
    System.out.println(i);
    }
    }
    }

  • @PriyankaTamilselvan
    @PriyankaTamilselvan 2 місяці тому

    public class if_state {
    public static void main(String[] args) {
    for(int i=5;i>=1;i--){
    System.out.println(i);
    }
    }
    }

  • @Mr.Aravindhan17
    @Mr.Aravindhan17 11 днів тому

    package Java;
    import java.util.Scanner;
    public class Main {
    public static void main(String[] args) {

    for (int i=100; i>=0; i-- ) {
    System.out.println(i);
    }
    }
    }

  • @santhoshram1221
    @santhoshram1221 6 місяців тому +1

    First like and first view ❤

  • @hamshidhan6279
    @hamshidhan6279 День тому

    class hello{
    public static void main(String args[])
    {
    for( int i=10; i>=1 && i

  • @Lucky-dm7wb
    @Lucky-dm7wb 3 місяці тому +1

    import java.lang.System;
    class demo{
    public static void main(String args[]){
    System.out.println("Numbers in reverse order :");
    for(int i=10;i>=1;i--){

    System.out.println(i);
    }
    }
    }

  • @nonopno
    @nonopno 6 місяців тому +2

    Don't put this code 💀
    public class Main {
    public static void main(String[] args) {
    for(int i=10 ; i>=0; i=i+1)
    {
    System.out.println(i);
    }
    }
    }

    • @serialkiller9278
      @serialkiller9278 6 місяців тому +1

      i=i-1
      Bro

    • @gopirajendran6733
      @gopirajendran6733 6 місяців тому

      ​@@serialkiller9278yes bro.. incase i+1 type panna.. 10 la start aki infinity ah poite irukkum.

  • @Responsiblcitizen
    @Responsiblcitizen 2 місяці тому

    for (int i =10; i >0; i--) {
    System.out.println(i) ;
    }

  • @buviappu9218
    @buviappu9218 3 місяці тому

    Super bro❤

  • @Gowshika-e1o
    @Gowshika-e1o 29 днів тому

    Data structure pathi sollunga anna.. 😢

  • @KMEAkashG
    @KMEAkashG 2 місяці тому

    akash
    public class akanumber {
    public static void main(String[] args) {
    int n = 5;{
    if( n >=5)
    for(int i=5;i>=1;i--)

    {
    System.out.println(i);
    }
    }
    }
    }

  • @Vinitha-rr8ey
    @Vinitha-rr8ey 28 днів тому

    import java.lang.System;
    import java.util.Scanner;
    class tut4 {
    public static void main(String args[])
    {
    for(int i=10;i>=0+1;i--)
    {
    System.out.println(i);
    }
    }

    }

  • @abishekapiyan
    @abishekapiyan 5 місяців тому +1

    class tutorial
    {
    public static void main (String args[])
    {
    for(int i=10;i>=1; i=i - 1)
    System.out.println(i);
    }
    }

  • @snoozed1113
    @snoozed1113 4 місяці тому

    import java.util.Scanner;
    class number{
    public static void main(String args[])
    {
    Scanner scan=new Scanner(System.in);
    System.out.print("Enter the Number : ");
    int num=scan.nextInt();
    for(int i=num;i>=1;i--)
    {
    System.out.println(i);
    }
    }
    }

  • @DILIPKUMAR-ei7zh
    @DILIPKUMAR-ei7zh 3 місяці тому +1

    Class demo(
    Public Static void main{string args[]}(
    For ( int i =6; i>=1; i-1 )
    [
    System.out.println (i);
    ]
    )
    )

  • @AravinthKalpana-w8i
    @AravinthKalpana-w8i Місяць тому

    import java.util.Scanner;
    public class codingChallenge {
    public static void main(String[] args) {
    Scanner obj = new Scanner(System.in);
    int num1 = obj.nextInt();
    int num2 = obj.nextInt();
    String result = num1>num2?"Num 1 is greater":"Num 2 is greater";

    System.out.println(result);

    }
    }

  • @SyedIbrahimAbdullah-nw4jw
    @SyedIbrahimAbdullah-nw4jw 5 місяців тому

    i can't get the answer bro please guide me

    • @Juzchu
      @Juzchu 4 місяці тому +1

      for(i=5;i>=1;i-1)
      Print(i)

  • @abinayap2281
    @abinayap2281 15 днів тому

    for( i=5;i>=1;i--){
    s.o.pln(i);
    }

  • @m.m.arshadahamed6229
    @m.m.arshadahamed6229 5 місяців тому

    import java.util.*;
    public class Main {
    public static void main (String args[]) {
    Scanner input = new Scanner(System.in);
    for (int i = 5; i >= 1; i--)
    {
    System.out.println(i);
    }
    }
    }

  • @santhoshram1221
    @santhoshram1221 6 місяців тому +1

    ❤❤❤

    • @nonopno
      @nonopno 6 місяців тому

      Hi Trisha

  • @manjulap7190
    @manjulap7190 2 місяці тому

    i=i+1, i++,i=+1. Difference slnga

    • @LegendS-lm6cx
      @LegendS-lm6cx 2 місяці тому

      If i=1
      i+1 =2
      i++ = 1 at first process
      i+=1 is i =i+1

    • @manjulap7190
      @manjulap7190 2 місяці тому

      @@LegendS-lm6cx so i+1,i=+1 and i+=1 thrice are same. Am i right?

    • @LegendS-lm6cx
      @LegendS-lm6cx 2 місяці тому

      ​@manjulap7190 i+1 and i+=1 both are the same. I don't know about i=+1 ,I think this is not an operator.

    • @manjulap7190
      @manjulap7190 2 місяці тому

      @@LegendS-lm6cx I saw only i=+1. Now only seeing i+=1. Anyway thank you...

  • @adheeeful
    @adheeeful Місяць тому

    class thala {
    public static void main(String[] a){
    for(int i=5;i>=1;i=i-1)
    {
    System.out.println(i);
    }
    }
    }

  • @arunraj9732
    @arunraj9732 6 місяців тому +1

    package Exercise_EMC;
    public class Exercise17 {
    public static void main(String args[]){
    for(int i = 1;i

  • @prasanthe5918
    @prasanthe5918 4 місяці тому +4

    for (int i = 5; i>=1; i--) {
    System.out.println(i);

    }

  • @mrsaran3785
    @mrsaran3785 2 місяці тому

    For (int i=5;i>=1;i=i-1)
    {
    System.out.println(i);
    }

  • @SubashKarthik-j3l
    @SubashKarthik-j3l 24 дні тому

    for(int i=10;i>=1;i=i-1)

  • @bibeeshkutty
    @bibeeshkutty 3 місяці тому

    For(int i =5;i>=1;i=i-1)
    System. Out. Println(i);

  • @freefiregamers-nk5xs
    @freefiregamers-nk5xs 4 місяці тому

    class HelloWorld {
    public static void main(String[] args) {
    int i = 10;
    for (i=10;i>=1;i=i-1)
    System.out.println(i);
    }
    }

  • @Animegaming46
    @Animegaming46 3 місяці тому

    class hello {
    public static void main(String args[]) {
    for (int i = 5; i >= 1; i--) {
    System.out.println(i);
    }
    }
    }

  • @subashinin4389
    @subashinin4389 3 місяці тому +2

    Class demo{
    public static void main (String args[ ]){
    for(int i=5;i>=1;i=i-1)
    {
    System.out.println(i);
    }
    }
    }

  • @MohamedAslam-sm7xm
    @MohamedAslam-sm7xm 6 місяців тому +4

    public class for_loop {
    public static void main(String args[]) {

    for(int i = 5; i >= 1; i=--i ) {
    System.out.println(i);
    }

    }
    }

  • @soundaryadamotharan8183
    @soundaryadamotharan8183 5 місяців тому

    for (int i=5;i>0;i--)
    {
    System.out.println(i);
    }

  • @BalasubramaniT-t2v
    @BalasubramaniT-t2v 4 місяці тому

    import java.util.Scanner;
    class Practice {
    public static void main(String [] args)
    {
    for(int i=10;i>=1;i--)
    {
    System.out.println(i);
    }
    }
    }

  • @r33epo_edits
    @r33epo_edits 4 місяці тому

    class forloop
    {
    public static void main(String args[])
    {
    for(int i=5;i>=1;i- -)
    {
    System.out.println(i);
    }
    }
    }

  • @28_05
    @28_05 4 місяці тому +2

    for( int i=1;i,

  • @blessymelba1803
    @blessymelba1803 2 місяці тому

    for(int i=5; i>=1; i=i-1)
    {
    System.out.println(i);
    }

  • @worldofgokulan
    @worldofgokulan 17 днів тому

    for(int i=10; i>=1; i=i-1){
    System.out.println(i);
    }

  • @harishv3909
    @harishv3909 2 місяці тому

    for(i=5;i>=1;i=i-1)
    {
    System.out.println(i);
    }

  • @sportszone3466
    @sportszone3466 5 місяців тому

    public class main{
    public static void main(String args[]){
    for(int i=10;i>=1;i--){
    System.out.println(i);
    }
    }
    }

  • @abu_sid674
    @abu_sid674 2 місяці тому

    for(int i=5;i>=1;i--){
    System.out.println(i);
    }

  • @pachaiyappans582
    @pachaiyappans582 4 місяці тому

    for(int i=10; i>=1; i--){
    System.out.print(i);
    }

  • @jainjain7360
    @jainjain7360 5 місяців тому +2

    public class forloop{
    public static void main(String[] args) {
    for (int i=5;i>=1;i--)
    {
    System.out.println(i);
    }
    }
    }