Java: String in Tamil -17 -First Non repeated Char Program -தமிழில் ஜாவா -Payilagam -Muthuramalingam

แชร์
ฝัง
  • เผยแพร่เมื่อ 3 ธ.ค. 2024

ความคิดเห็น • 10

  • @ManiKandan-vo2qr
    @ManiKandan-vo2qr 3 ปีที่แล้ว +9

    Sir ,This program logic is not working when we have a string like "aabbjgghh" . Because when i =1 and iteration continues , again character ''a' will be unique .

  • @ManiKandan-vo2qr
    @ManiKandan-vo2qr 4 ปีที่แล้ว +1

    Hello sir can you please upload the same program for the integers ? First non repetitive numbers?

  • @Manikandan-yd6vf
    @Manikandan-yd6vf 4 ปีที่แล้ว

    Hai sir...I'm learning java from ur channel ..it is possible to post some videos on java swing concept

  • @indiantourism975
    @indiantourism975 4 ปีที่แล้ว

    Thank you Sir

  • @wolf_gamer_100
    @wolf_gamer_100 4 หลายเดือนก่อน

    Compare two strings sir

  • @vijayv5459
    @vijayv5459 10 หลายเดือนก่อน

    intha program la verum first letter matum tha compare pandranga.... matha letters compare agala..... "welcome " potu patha 'w' matum tha compare aguthu.... could you please correct this program sir..

  • @maheshwaranboomibalan9912
    @maheshwaranboomibalan9912 2 ปีที่แล้ว +1

    public class FirstNonRepeatedChar {
    public static void main(String arg[]) {
    System.out.println("main method");
    String str = "khabcahbcde";
    int length = str.length();
    for (int i = 0; i < length; i++) { // pass the string
    boolean isRepeated = false;
    for (int j = 0; j < length; j++) { // check first non reperated char
    if(str.charAt(i) == str.charAt(j) && i != j) {
    isRepeated = true;
    break;
    }
    }
    if(!isRepeated) {
    System.out.println(str.charAt(i) + " is not repeated");
    break;
    }
    }
    }
    }

  • @LeoEditx
    @LeoEditx 2 ปีที่แล้ว

    String la == use pannakudathunu solringa apram y inga use panringa

    • @aleishavijay4811
      @aleishavijay4811 2 ปีที่แล้ว +1

      adhu character a compare panranga. not string

  • @kesavanakkil6250
    @kesavanakkil6250 4 ปีที่แล้ว

    Hi