ryt side end is not clear...but easy to understand the logics
@chilambu18672 жыл бұрын
clear explanation sir tq
@priyadharshini65332 жыл бұрын
Nice explanation sir
@karthickmurugan9260 Жыл бұрын
How to print pattern program using ASCII values ....means if we print ASCII values...if 97 is 'a' so if print s.o.print (?????)...how to print?
@kayalvizhin46224 жыл бұрын
Sir !strong prime number program explanation please!!
@ssn19124 жыл бұрын
Sir.. clear ah program poduga..confussing plz consider my request
@officialNCS20012 жыл бұрын
Strong number for loopla poda mudiyathaaa
@PayilagamChennai2 жыл бұрын
Yes, you can.
@kayalvizhin46224 жыл бұрын
Super sir
@Gokulraj_Palani4 жыл бұрын
Sir this program gives not strong for 145 public class Strongnumber { public static void main(String[] args) { long strongs; long num=1,num1,fact=1,strong=0; strongs=num; while(num>0) { num1=num%10; while(num1>0) { fact=fact*num1; num1=num1-1; } strong=strong+fact; num=num/10; } if(strongs==strong) { System.out.print(strong); } else { System.out.print("not strong"); } } }
@daddyfan79554 жыл бұрын
It's totally wrong not correct... Kindly check the other videos or websites
@PayilagamChennai4 жыл бұрын
No. It is correct. Kindly add your points if you have any.
@suryaprakash7873 жыл бұрын
He explained correctly da mutta payale he just forgot to execute the program in order...odane thookitu vanthudrathu wrong nu... public class StrongNumber { public static void main(String[] args) { int no=145;int rem=1;int fact=1;int sum=0;int num2=no; while (no>0) { rem = no % 10; fact=1; while (rem > 0) { fact = fact * rem; rem--; } sum=sum+fact; no= no / 10; } if(sum==num2){ System.out.println("Its is Strong Number"); } } }