class Ambstrong { public static void main(String[] args) { int n =153; int temp; int amb = 0; int original = n; while(n>0){ temp = n%10; temp = (int)Math.pow(temp,3); amb = amb+temp; n = n/10; } if(original==amb){ System.out.println("amb"); }else{ System.out.println("not amb"); } } } Thank you so munch... 👌
@prakharsrivastava51302 жыл бұрын
*Check Armstrong number for n digits* import java.lang.*; import java.util.Scanner; public class armstrongNum { public static void main(String[] args) { // Asking for INPUT from USER System.out.print("Enter a Number: "); Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int s = n; int m = n; double r,q = 1; int counter=0; double sum=0; // To count number of Digits entered by USER while (n > 0) { r = n % 10; n = n / 10; counter++; } // Logic here while (m > 0) { q = m % 10; q=Math.pow(q,counter); sum+=q; m = m / 10; } // Checking if (sum==s) { System.out.println("Yes it is a Armstrong Number"); } else { System.out.println("Not a Armstrong Number"); } } }
@sarahfatima98403 жыл бұрын
Splendid!! Your method of first explaining each step before writing the program is amazing. I have been struggling since months to find a good computer teacher and I never understood these concepts but after watching your video I feel blessed. I have understood. Thank you❤️!
@BTechComputerScience3 жыл бұрын
Hey thanks... ur satisfaction means a lot to me😊
@sarahfatima98403 жыл бұрын
@@BTechComputerScience No worries🤭💗
@Mulllana_Haramudil-AlHarami2 жыл бұрын
CS sir with least technology you are best . Your explanation at each & step is amazing 😍. Keep it up ;
@Reahroy-fr4jl6 ай бұрын
Thank you so much ❤ please continue to do like these videos❤❤❤
@vikrambahure86398 ай бұрын
very easy steps ...thanks sir
@sreejayvlogs Жыл бұрын
Awesome bro…. 😊 it’s so clear
@kainaatmakhani65503 жыл бұрын
u made my life very easy thankyou so much.
@NailPassion999 Жыл бұрын
Excellent explanation😃
@mounimouni2242 жыл бұрын
Detailed one..!! Great Thank you..!!
@keerthanaselvaraj6791Ай бұрын
How to find the first,last and middle number in an given input in java ,post a video for this ques .The method of teaching in the notebook is easily understandable.Good teaching methodology.
@anusharasumolla30175 ай бұрын
Thank you so much your videos helped me a lottttttt
@ShivaKumar-yy2ym3 жыл бұрын
Thank you so munch... Great work 👍
@mepreetii11 ай бұрын
Hi sir you should initialize temp as double as math pow cant be in int data type
@BTechComputerScience11 ай бұрын
Yes correct!
@payalnishad18542 жыл бұрын
Superb bro. 🙏thanks alot for make coding this easy... I was unable to understand the armstorng concept but when I came across your video now I started considering myself pro at coding😝😂👍
@BTechComputerScience2 жыл бұрын
😂👍
@Kishore-xz6cb7 ай бұрын
everyone learning the program meanwhile me getting saced in 2am by hearing a brid sound 4:28😂
@sindhuhari26283 жыл бұрын
Brother there we need to do explicit type conversion near applying power else we will get an lossy conversion error
@BTechComputerScience3 жыл бұрын
Yes, students are smart and will figure it out😊, they won't like if I spoon feed everything! Thanks for supporting!
@Giriagroandfashion2 жыл бұрын
How to do Brother??? Can You Please Explain
@Misartlog_brush2 жыл бұрын
It was very helpful, thanks
@BTechComputerScience2 жыл бұрын
Glad it was helpful 😊
@docmusiq2 жыл бұрын
If your loss conversation, just change your temp data type from integer to double...eg declare your temp like: double temp; Your explanations are amazing, especially the way you break down the question through pseudo-code and you show every declared variable duty while executing the code...
@BTechComputerScience2 жыл бұрын
Really glad u like it 😊
@saikrishna-fg2so2 жыл бұрын
please copy the code in the comment session, it have some errors
@sandhyabonagiri83302 жыл бұрын
Tq alot bro....🥰🥰🥰🥰
@ravinatram3 жыл бұрын
Pls give description of variables pls
@venkatakumargangapatla45102 жыл бұрын
Thank u soo much sir 🤝🤝🤝
@Aishwarya_Shettar3 ай бұрын
Sir,make vdo on Find a armstrong number btwn 2 numbers!
@sindhuhari26283 жыл бұрын
And why aren't you uploading videos these days
@priyankapatil65213 жыл бұрын
Sir ...plz how to generate random number par vedio banao ..
@appuappu84662 жыл бұрын
Write a program add two number without using additional operator in java. How to sir
@SourabhPrajapatArts3 жыл бұрын
thanks bro
@sureshirla42832 жыл бұрын
Sir akkada 153 number iccham kabatti math.(temp 3 ) ani pettaru but asalu ye number ivvakunda Armstrong aa kadha ani telusukovadam ela
@saikrishna-fg2so2 жыл бұрын
please copy the code in the comment session, it have some errors
@antonychellamarul Жыл бұрын
Sir, *Definition Check* An Armstrong number is a positive n-digit number that is equal to the sum of the nth powers of their digits. (not only by cubes ,cubes for only 3 digits). Ex: 8208 = (8^4 + 2^4 + 0^4 + 8^4) = 8208. *not by cubes* .
@BTechComputerScience Жыл бұрын
Yes that's true, this is for beginner level, once u learn this, we can do it for any number of digits. Easy.
@aishwaryas51462 жыл бұрын
Where is execution part?
@durgabhavani5855 Жыл бұрын
Sir If u don't mine u r way of explanation is so nyc but u r voice is not audible properly please raise u r voice sir
@BTechComputerScience Жыл бұрын
Hey thanks for letting me know, I ll improve it
@greeshmikaagarwal2563 жыл бұрын
Thank you
@PreethiRenu Жыл бұрын
anna ,Armstrong number in a given range in java edhuku coding vanum anna pls video upload 😔pannunga
@kiranmairuben29783 жыл бұрын
Error in temp= math.pow(temp, 3); pls help
@ashishannappa69083 жыл бұрын
It will typemissmatch
@ashishannappa69083 жыл бұрын
Try another method
@sureshirla42832 жыл бұрын
Temp=(int)math.pow(temp,3) try this bro
@deamoneye50753 жыл бұрын
Concept is Wrong, Pow(Num,Length) is right .
@BTechComputerScience3 жыл бұрын
Yup.. that's right! But m just teaching the basics.. so that students can understand the core and then move to a little more complex programs where they can mix 'Armstrong' and 'count number of digits of the given number' to perform what you just mentioned
@vishalrc69032 жыл бұрын
i get error when i use math.pow conversion type error what to do now
@BTechComputerScience2 жыл бұрын
Share the code, let me have a look
@vishalrc69032 жыл бұрын
@@BTechComputerScience where to share it? Insta?
@BTechComputerScience2 жыл бұрын
@@vishalrc6903 just copy paste the code in the comment
@StudyPulse-uh7hkАй бұрын
❤❤❤
@naveena14413 жыл бұрын
👍👍👍👍👍👍👍
@aishwaryas51462 жыл бұрын
@3:05 so many mosquitoes my ears...
@salmanparsi82393 жыл бұрын
Very usefull you deserve a like
@Chari-0073 жыл бұрын
👍👏👏👏👏
@HiteshSote2 жыл бұрын
What is about 1634
@aishwaryas51462 жыл бұрын
Armstrong we will get 308 so answer is not armstrong
@Giriagroandfashion2 жыл бұрын
Getting error at Math.pow line
@kiranmairuben29783 жыл бұрын
Error in temp= math.pow(temp,3); Pls help
@BTechComputerScience3 жыл бұрын
Try importing this - import java.lang.Math;
@mohammadsajid89243 жыл бұрын
@@BTechComputerScience kr diya import tb bhi error aarha pls help
@bumbada12 жыл бұрын
@@mohammadsajid8924 if you have stored temp in int that can throw an error type cast it : temp= (int) Math.pow(temp,3);
@bumbada12 жыл бұрын
@@BTechComputerScience explanation: pow method returns a double so if your temp is not double, you need to type cast it
@mahaperumal58723 жыл бұрын
why divided by 10 please any one explain
@Giriagroandfashion2 жыл бұрын
To get the Quotient i...e., 15
@kainaatmakhani65503 жыл бұрын
sir plzz make video of palindrome number in java?
@BTechComputerScience3 жыл бұрын
Watch my palindrome for strings video, a good coder like u can easily modify it for numbers 😊
@tech-learner45553 жыл бұрын
How u fix ur cam frmd
@BTechComputerScience3 жыл бұрын
it's a pretty messed up setup right now, previously I was using a phone holder like this one amzn.to/3ArD6YE
@tech-learner45553 жыл бұрын
Thanks 🙏🏻
@Solomoon-ce5wx2 жыл бұрын
Not like it
@Swatisirmour Жыл бұрын
Too much complicated
@BTechComputerScience Жыл бұрын
Practice more, do more coding... then it might not seem very complicated!
@abdulrahim776311 ай бұрын
tried without while loop..this is working fine for me (give any number within the limit of integer data type) Scanner sc=new Scanner(System.in); System.out.println("Enter any number to find out if it is a Armstrong number or not"); int input=sc.nextInt(); String s=""; String count=s.valueOf(input); int input_size = count.length(); int digit; double Armstrong=0; double result=0; int actual=input; if(input>0) { for(int i=1;i
@BTechComputerScience11 ай бұрын
It's really great that u tried on your own and came up with great logic.😊